body {
    font-family: "courier new";
    font-weight: normal;
    font-size: 15px;

    margin: 50px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e4dcd0;
    text-align: center;
}

img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 100%;
    border: solid #202020 10px;
    margin-bottom: 10px;
}


.recipe-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 0px;
    padding-left: 0px;
}

.featured-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 20px;
    margin-top: 0px;
    margin-bottom: 50px;
}


h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #202020;
    font-size: xxx-large;
}

h2 {
    margin-bottom: 30px;
    text-align: center;
    justify-content: center;
    text-decoration: underline;
    color: #202020;
}

header {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none;
    font-weight: 600;
    color: rgb(24, 24, 24);
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 10px;
    border: solid #202020 5px;
    background-color: #f3f588;
    width: 226px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

a:hover {
    background-color: #202020;
    color: azure;
    color: #b9e474;
    
}

.coming {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 226px;
    text-align: center;
    background-color: rgb(230, 224, 224);
    border-radius: 10px;
    margin-top: -1px;
    border: solid #cecece 5px;
    color: #b84242;
    font-weight: 600;
}

.more {
    background-color: #202020;
    color: azure;
}

.more:hover {
    background-color: #b84242;
    color: azure;
}

h1 {
    color: #202020;
}





@media screen and (max-width: 460px) {
    h1 {
        font-size: 40px;
    }
}