

* {
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
    font-family: "Poppins";
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.navigation-container {
    color: white;
    padding: 20px 0;
    background-color: #3d85c6;
    display: flex;
    justify-content: center;
    border-bottom: 3px solid black;
}

.navigation {
    width: 900px;
    /* border: 1px white solid; */
    display: flex;
    justify-content: space-between;
}

.navigation div{
    font-family: "Playfair Display";
    font-size: 30px;
}

.navigation div a {
    text-decoration: none;
    color: white;
}

.links {
    display: flex;
    justify-content: flex-end;
}

.socials {
    margin-left: 50px;
}

.content-container {
    margin: 50px 30px;

    /* Debugging */
    /* border: 2px black solid; */
}


.food-container{
    background-color: #fff;
    display: flex;
    justify-content: center;
    /* border: 2px solid black; */
}


.food{
    padding: 10px 0;
    width: 1500px;
    justify-content: space-around;
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    /* border: 1px solid black; */
    flex-direction: column;
}

.food-item img {
    height: 250px;
    border-radius: 10%;
    padding: 10px;
}

.food-item {
    border: 5px solid black;
    border-radius: 20px;
    display: flex;
    padding: 10px;
    margin: 10px;
    background-color: rgb(230, 211, 45);
}

.food-details {
    padding: 20px;
    align-items: center;
    /* border: 1px solid black; */
}

.food-title, .food-title a {
    padding-bottom: 10px;
    text-decoration: none;
    list-style: none;
    color: black;
}

.food-title,
.food-description,
.ratings-title,
.ratings-score {
    padding-bottom: 10px;
}