.recipebar {
    font-family: 'Pixelify Sans';
    color: white;
    background-color: #F8633C;
    height: 8vh;
    width: 100vw;
    position: fixed;
}

.recipebar_title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5vh;
}

.recipebar_title img {
    margin: 1.15vh;
    height: 4.75vh;
}

#recipes {
    margin-left: 25vw;
    padding-top: 12vh;
    width: 50vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 equal-width columns */
    gap: 2vw; /* Adjust spacing between squares */
    justify-content: center; /* Center the grid as a whole */
}

.recipe {
    width: 100%;
    height: 16vw;
    background-color: #22346F;
    color: white;
    font-family: 'Public Sans';
    font-weight: 700;
    font-style: normal;
}

.recipe div {
    height: 6vw;
}

.recipe span {
    display: block;
    padding: 1vw 0 0 1vw;
}

.recipe img {
    width: 100%;
    height: 10vw;
}

.buffer {
    height: 13vh;
}

.cover {
    margin-left: 25vw;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50vw;
    height: 25vw;
    background-color: #22346F;
    color: white;
    font-family: 'Public Sans';
}

.cookiepic {
    background-color: red;
    height: 20vw;
    overflow: hidden;
    margin: 3vw;
}

.cookiepic img {
    width: 19vw;
    height: auto;
}

.info_card {
    width: 22vw;
    margin: 3vw;
    height: calc(100% - 6vw);
}

.recipe_title {
    font-weight: 500;
    font-size: 3.4em;
}

.description {
    font-weight: 500;
    font-size: 1.7em;
    margin-top: 2vw;
}

.yield {
    margin-top: 1vw;
    font-size: 1.5em;
}

.recipe_content {
    font-weight: 500;
    font-family: 'Public Sans';
    color: white;
    width: 48vw;
    margin-left: 26vw;
    margin-top: 2vw;
    font-size: 1.2em;
}