body {
    background-color: lavender;
    font-family: Verdana,'Segoe UI', Tahoma, Geneva, sans-serif;

}

header {
    margin-bottom: 30px;
    
}
.backgroundImage {
    background-size: cover;
    filter: blur(10px);
}
img {

    display: block;
    margin: auto;
    width: 50%;
    border-radius: 10px;
    border: 2px solid #8b008b;
}
a {
    color: crimson;
}

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

h1 {
    text-align: center;
    font-weight: 800;
    font-size: 34px;
    line-height: 1.75;
    color: teal;

}

.form-container {
    padding: 15px 25px;
    background-color: whitesmoke;
    box-shadow: 0px 4px px 0px rgba(40, 45, 75, 0.08);
    border-radius: 10px;
    margin-bottom: 30px;

}

form {
    
    display: flex; 

}

.hint {
    line-height: 2;
    font-size: 10px;
    opacity: 0.8;
    margin-top: 5px;
}
.instructions {
    padding: 16px;
    border: 1px solid rgba (39, 40, 55, 0.4);
    width: 80%;
    font-size: 18px;
    border-radius: 60px;
    line-height: 20px;
    color: rgb(4, 54, 4);
}

.submit-button {
    margin-left: 10px;
    background: palevioletred;
    color: whitesmoke;
    border: none;
    width: 150px;
    font-size: 16px;
    border-radius: 60px;
    padding: 14px 24px;

}

.recipe {
    font-size: 14px;
    background-color: #fff;
    padding: 20px;
    line-height: 20px;
    border-left: 3px solid #554344;
    box-shadow: 0px 6px 25px 0px rgba(60, 55, 95, 0.05);
}

.hidden {
    display: none;
}

footer {
    text-align: center;
    font-size: 11px;
    margin-top: 30px;
    
}
.generating {
    animation: myAnim 2s ease 0s 1 normal forwards;
}

@keyframes myAnim {
	0%,
	50%,
	100% {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0;
	}
}

