body {
    background-color:#d7f9f8;
    font-family: "poppins", sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

a { 
    color: #f0aaaa;
    }

.container {
    max-width: 600px;
    width: 100%;
    padding: 20px;
}

h1{
    font-weight: 400;
    font-size: 36px;
    line-height: 1.5;
    color: #f0aaaa;
    text-align: center;
    letter-spacing: 10px;
}
  
form {
    display: flex;
    padding: 30px;
    background-color: #ffffea;
    border-radius: 10px;
    border: 2px solid #fbe0e0;        
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.hint {
    line-height: 1.5;
    margin-top: 5px;
    opacity: 0.6;
    font-size: 12px;
}


header{
    margin-bottom: 30px;
}


:focus-visible {
    outline: none;
}

.instructions{
    padding: 16px;
    flex: 1;
    width: 100%;
    min-width: 0;
    font-size: 16px;
    line-height: 20px;
    color: #3c025e;
    border: 1px solid #e5d4ef;
    border-radius: 30px;
    box-sizing: border-box;
}

.submit-button{
    background-color: #f0aaaa;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 24px;
    min-width: 120px;
    font-size: 16px;
    transition: all 200ms ease;
    cursor: pointer;
    white-space: nowrap;
}
:hover.submit-button {
    background-color: #ffffea;
    color:#f0aaaa ;
    border:1px solid #f0aaaa;
}

.recipe{
    font-size: 16px;
    background-color: #ffffea;
    padding: 20px;
    line-height: 2;
    border-left: 3px solid #d7f9f8;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    border-radius: 10px;
    border: 2px solid #fbe0e0;
    color: #5e606c;
}
    

footer{
    text-align: center;
    font-size: 12px;
    display: block;
    color: #5e606c;
}

.hidden{
    display: none;
}





@media screen and (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 10px;
    }
    
    h1 {
        font-size: 28px;
        letter-spacing: 5px;
        margin-bottom: 20px;
    }
    
    form {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .instructions {
        width: 100%;
        font-size: 16px;
        padding: 14px 16px;
        box-sizing: border-box;
    }
    
    .submit-button {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .recipe {
        padding: 15px;
        font-size: 15px;
        line-height: 1.8;
    }
}



