/* Landing Page Slide Show */
.mySlides {
    display: none;
}
.slideshow-container{
    max-width: 100%;
    position: relative;
    margin: auto;
}
.slideshow-container img {
    vertical-align: middle;
    width: 100%;
    height: 100vh;
}
.fade {
    animation-name: fade;
    animation-duration: 3s;
}
.center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font: 5rem Arial;
    text-align: center;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
}
@keyframes fade {
    from {opacity: 0.5} 
    to {opacity: 1}
}
/* About Content Section */
.content-div{
    display: flex;
    background-color: #FCFCFC;
    padding: 50px 0;
    align-items: center;
    justify-content: center;
}
.content-div-h1{
    font: 2rem sans-serif;
    color: red;
    font-weight: 600;
    background-color: #FCFCFC;
    text-align: center;
    padding-top: 30px;
}
.content-div img{
    max-width: 60%;
    border-radius: 20px
}
.content-div div{
    display: flex;
    justify-content: center;
    width: 100%;
}
.content-div p{
    font: 1.2rem sans-serif;
    width: 50%;
    line-height: 2;
}
/* All meals section */
.meal-div{
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    transition: transform 0.5s, opacity 0.5s;
    opacity: 0;
}
.meal-div.active{
    opacity: 1;
}
.meal-div h1{
    font: 2rem sans-serif;
    width: 100%;
    text-align: center;
    padding: 10px 0 20px 0;
    font-weight: 600;
    color: red;
}
.meal{
    display: flex;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}
.meal div{
    padding: 30px 20px;
}
/* Testimonial Section */
.testimonials-div{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 25px 0;
    background-color: white;
}
.testimonials-div h1{
    width: 100%;
    text-align: center;
    font: 2rem sans-serif;
    font-weight: 600;
    color: red;
    padding: 10px 0 20px 0;
}
.testimonials-div p{
    font: 1.2rem sans-serif;
    line-height: 1.5;
    width: 20%;
    padding: 20px;
    box-shadow: 0 20px 50px 0 rgb(28 9 80 / 7%);
    border-radius: 20px;
}
.testimonials-div p span {
    color: red;
}
/* Animations */
.left-animate{
    transition: transform 0.5s, opacity 0.5s;
    transform: translateX(-100px);
    opacity: 0;
}
.right-animate{
    transition: transform 0.5s, opacity 0.5s;
    transform: translateX(100px);
    opacity: 0;
}
.top-animate{
    transition: transform 0.5s, opacity 0.5s;
    opacity: 0;
    transform: translateY(-100px);
}
.top-animate.active{
    transform: translateY(0);
    opacity: 1;
}
.left-animate.active,.right-animate.active{
    transform: translateX(0);
    opacity: 1;
}
/* Stack everything on top of each other */
@media screen and (max-width: 1000px){
    .content-div{
        flex-wrap: wrap;
    }
    .content-div:nth-last-of-type(2){
        flex-wrap: wrap-reverse;
    }
    .content-div div{
        padding: 10px 0;
    }
    .center{
        font-size: 2rem;
    }
    .left-animate{
        transform: translateY(-100px);
    }
    .right-animate{
        transform: translateY(100px);
    }
    .left-animate.active,.right-animate.active{
        transform: translateY(0);
    }   
}
@media screen and (max-width: 1130px) {
    .testimonials-div p{
        width: 100%;
        margin: 20px;
    }
}