*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

body{
    height: 100vh;
    background: #825CFF;
}

.container{
    background-color: #1153ce;
    padding: 35px 20px 38px;
    width: 90vw;
    max-width: 512px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
}

.search-box{
    width: 100%;
    display: grid;
    grid-template-columns: 9fr 3fr;
    gap: 15px;
}

.search-box input{
    font-size: 15px;
    padding: 6px;
    border: 2px solid #ccc;
    background: transparent;
    border-radius: 4px;
    color: #fff;
}

.search-box button{
    font-size: 15px;
    background-color: #ffb92a;
    border: none;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

img{
    display: block;
    width: 35%;
    margin: 28px auto 22px;
    border-radius: 6px;
}

.details{
    background-color: #ffb92a;
    position: relative;
    text-align: center;
    padding: 10px 0;
    border-radius: 10px;
}

.details h2{
    font-size: 17px;
    font-weight: 600;
}

.details h4{
    font-size: 15px;
    font-weight: 400;
}

#show-recipe{
    font-size: 15px;
    position: relative;
    left: 76%;
    padding: 8px 12px;
    background-color: #ffb92a;
    border: none;
    top: 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

#recipe{
    position: absolute;
    background-color: #1e293b;
    min-height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 10px;
    display: none;
}

#recipe pre{
    white-space: pre-wrap;
    word-wrap: break-word;
    padding: 40px 24px 24px;
    font-size: 14px;
    color: #fff;
}

#hide-recipe{
    font-size: 15px;
    position: relative;
    width: 28px;
    height: 28px;
    background-color: #ffb92a;
    border: none;
    top: 18px;
    left: 91%;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#show-recipe:hover, #hide-recipe:hover, .search-box button:hover{
    background-color: #e69b00;
}

ul{
    font-size: 15px;
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    gap: 12px 16px;
    padding: 16px 0 0 18px;
    color: #ccc;
    text-transform: capitalize;
}

#ingre-container h3{
    text-align: center;
    color: #fff;
}

@media screen and(max-width: 500px) {
    .container{
        font-size: 14px;
        padding: 35px 25px 28px;
    }
    #show-recipe{
        left: 73%;
    }
}