@media(max-width:600px){
    .container {
        margin: 40px 20px;
    }
    form, recipe {
        width: 100%;
    }
    .submit-button {
        width:100%;
        margin: 10px 0 0 0;
    }
}
    
body {
    background-color: #a5dcb2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
  color: #1e3b2b;
}

.container {
    margin: 120px auto;
    max-width: 600px;
}

header {
    margin-bottom: 30px;
}

h1 {
    font-weight: 800;
    font-size: 36 px;
    line-height: 1.5;
    color: #272044;
    text-align: center;
    padding: 0;
}

.form-container {
    background-color: white;  
    margin-bottom: 30px; 
    border-radius: 10px;
    padding: 15px 20px;
}

form {
   box-shadow: 0px 20px 60px rgba(50, 87, 77, 0.88);
   display: flex;
  }

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

.instructions {
    padding: 16px;
    border: 1px solid rgb(155, 148, 148);
    width: 80%;
    font-size: 16px;
    border-radius: 50px;
    line-height: 20px;
    color: #272044;
}

.submit-button {
    margin-left: 10px;
    background: #608b72;
    color: aliceblue;
    border: non;
    width: 150px;
    font-size: 16px;
    border-radius: 50px;
    font-size: 16px;
    padding: 14px 25px;
}

inputfocus,
.submit-button:focus {
    outline: 2px solid #77ba8f;
    outline-offset: 4px;
}

.recipe {
    font-size: 16px;
    background-color: #fff;
    padding: 20px;
    line-height: 2;
    border-left: 3px solid #80f371;
    box-shadow: 0px 20px 60px rgba(38, 83, 66, 0.03);
}

.hidden {
    display: none;
}

.recipe strong {
    color: #77ba8f;
}

footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;

}

.button-row {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.button-row button {
    padding: 10px 20px;
    background-color: #77bfa9;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-row button:hover {
    background-color: #559b89;
}

.generating {
    animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
