@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
body{
    background-color: rgb(194, 166, 125);
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    margin: 0px;
    padding: 0px;
    font-size: 20px;
}

.container h1{
    text-align: center;
}
header{
    height: 70px;
    width: 100%;
    background-color: rgb(100, 31, 31);
    padding: 0px;
    margin:0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1{
    color: rgb(255, 255, 255);
}

.container{
    margin-left: 10%;
    margin-right: 10%;
    padding: 50px;
    padding-top: 10px;
}

h2{
    text-align: center;
    font-size: 40px;
}

.recipe{
    width: 350px;
    height: 400px;
    background-color: beige;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);;
}

.recipe h3{
    font-size: 30px;
}

a{
    text-decoration: none;
    color: inherit;
}

header a{
    text-decoration: none;
}
.recipe:hover{
    transform: translateY(-5px);
}

.recipeContainer{
    display: flex;
    justify-content: space-evenly;
}

img{
    height : 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    border: 8px solid white;
}

a{
    text-decoration: none;
    color: inherit;
}

.recipe img{
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
    border: 0px;
}
#imageInfo img{
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
}

#imageInfo{
    overflow: hidden;
}

hr{
    border: none;
    border-top: 5px solid rgba(0, 0, 0, 0.1);
}