*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

button{
    background-color: rgb(189, 160, 117);
    width: 130px;
    color: white;
    border: rgb(189, 160, 117);
    height: 50px;
    font-size: large;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    margin-bottom: 100px;
}

body{
    background-color: bisque;
}

.card-container{
    border: blue;
    display: flex;
    justify-content: center;
    flex-grow: 1;
    flex-wrap: wrap;
    margin-top: 20px;
}

.card1{
    width: 1000px;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
    margin-right: 5px;
    margin-bottom: 5px;
}

.contact{
    width: 900px;
    background-color: bisque;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 5px;
    margin-bottom: 5px;
}

.chef{
    width: 900px;
    background-color: bisque;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 5px;
    margin-bottom: 5px;
}

.card2{
    width: 1000px;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
    margin-right: 5px;
}

.card-about-us{
    width: 800px;
    background-color: rgba(255, 255, 255, 0.589);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
    margin-right: 5px;
    margin-top: 5px;
}

.card-title{
    width: 325 px;
    background-color: bisque;
    border-radius: 8px;
    overflow: hidden;
    margin: 0px;
    margin-bottom: 120px;
}

.card-banner{
    width: 325 px;
    background-color: bisque;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px;
}

.card-banner2{
    width: 500 px;
    background-color: bisque;
    border-radius: 8px;
    margin: 20px;
    margin-right: 1000px;
    margin-left: 900px;
}


.card1 img{
    max-width: 45%;
    height: auto;
}

.card2 img{
    max-width: 45%;
    height: auto;
}

.card3 video{
    max-width: 45%;
    height: auto;
}

.card3 img{
    max-width: 45%;
    height: auto;
}

.chef img{
    max-width: 45%;
    height: auto;
}

.contact img{
    max-width: 45%;
    height: auto;
}

.card-about-us img{
    max-width: 45%;
    height: auto;
}

.card-title img{
    max-width: 100%;
    height: auto;
}

.card-banner img{
    max-width: 100%;
    height: auto;
}

.card-content{
    padding: 10px;
}

.card-content-vid{
    padding: 16px;
}

.card-content-title{
    padding: 16px;
    display: flex;
    justify-content: center;
}

.card-about-us-text{
    margin-top: 100px;
    display: flex;
    justify-content: center;
}

.card-about-us p{
    font-size: 20px;
}

.card-content h3{
    font-size: 28px;
    margin-bottom: 0px;
}

.card-content-vid h3{
    color: white;
    font-size: 30px;
}

.card-content-vid p{
    color: white;
    font-size: 20px;
}

.card:hover{
    background-color: beige;
    color: white;
    cursor: pointer;
    transform: scale(1.03);
    transition: all 1 ease;
}

@media (max-width: 600px){
    .card-container{
        width: 100%;
    }
}
