body{
    background-image: url("https://images.pexels.com/photos/5794874/pexels-photo-5794874.jpeg");
    background-size: cover;
    font-family: Mystery Quest, system-ui;
    font-weight: 400;
    font-size: 20px;

}
.container{
    background: rgba(255, 255,255,0.7);
    color:black;
    padding: 15px;
    width:100%;
    margin: 0 auto;
    max-width:700px;
    box-shadow: 0px 30px 40px 0px rgba(255, 255, 255 ,0.03);
    border-radius: 5%;
    margin-top: 50px;
}

header{
    text-align: center;
    line-height: 0.9;
}

input{
  font-size: 20px;
  border:none;
  border-radius: 10px;
  padding:8px;
}
.form-wrapper{text-align:center;}
form{
    text-align: center;
}
.example{display: flex;
position:relative; 
left:180px;
font-size: 12px;}
a{
    text-decoration: none;
    color:navy;
}

a:hover{
    text-decoration:underline;
    cursor: pointer;
}
#button{
    background-color: navy;
    color:aliceblue;
    cursor: pointer;
   
}

.recipe{
    background-color: rgba(255, 255,255,0.7);;
    font-size:18px;
    line-height: 1.5;
    border-radius: 10px;
    margin:0 auto;
    padding: 0px 5px 5px 5px;
    
}

.hidden{display:none;
}
footer{
    font-size:14px;
text-align: center;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}