*{
    padding: 0;
    margin: 0;

    text-decoration: none;
    list-style: none;

    border: none;
    outline: none;

    position: relative;
    scrollbar-width: none;
}
body{
    max-width: 100svw;
    min-height: 100svh;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgb(0, 0, 0);
    color: white;
}
nav ul{
    display: flex;
    gap: 20px;
}
nav ul li{
    cursor: pointer;
}
nav ul li:hover{
    color: oklch(.666 .179 58.318);
    font-weight: bold;
}
section{
    padding: 30px;
}
section p{
    text-align: center;
}
.search-parent{
    display: flex;
    justify-content: center;
    margin: 20px;
}
.search{
    padding: 20px;
    width: 80%;
    border: 2px solid oklch(.666 .179 58.318);
    border-radius: 10px;
    transition: 0.5s;
}
.search:focus{
    box-shadow: 0 0 10px oklch(.666 .179 58.318);
}
section h2{
    color: oklch(.666 .179 58.318);
}
.recipes-container{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
}
.card{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 2px solid oklch(.666 .179 58.318);
}
.card img{
    width: 15%;
    border-radius: 50%;
    flex-shrink:1 ;
}
.card .content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card .content a{
    color: oklch(.666 .179 58.318);
    width: fit-content;
}
.card .content a:hover{
    font-weight: bold;
}
.card .content p{
    text-align: start;
}
.ing{
    color: gray;
}
footer{
    text-align: center;
    padding: 20px;
    background-color: rgb(0, 0, 0);
    color: white;
    box-shadow: 8px -8px 15px rgba(0, 0, 0, 0.5);
}
@media (max-width:768px){
    header{
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
    }
    .card{
        flex-direction: column;
    }
    .card img{
        width: 200px;
}

}