body {
  background-color: #020202;
  font-family: creepster;
}

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

header {
  margin-bottom: 30px;
}

form {
  text-align: center;
  margin-bottom: 30px;
}

.recipe {
  font-size: 20px;
  line-height: 25px;
  border: 3px solid #811313;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  width: 100%;
  box-sizing:border-box;
  position: relative;
  z-index: 2;
}

.hidden {
  display: none;
}

.blood {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 95%;
z-index: 1;
top: -97px;
height: auto;
pointer-events: none;
}

.form {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.search-form {
padding: 10px;
border-radius: 20px;
max-width: 400px;
border-color: #811313;
border-width: 15px;
background:#020202;
font-family: creepster;
color:#f06b1e;
width: 80%;
line-height: 20px;
position: relative;
z-index: 3;
height: auto;
}

.button {
background:#f06b1e;
font-family: creepster;
padding: 10px;
font-size: 25px;
border-radius: 10px;
margin-top: 20px;
margin-bottom: 10px;
width: 100px;
position: relative;
z-index: 3;
}

a {
  color:#811313;
}

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



.recipe {
  color:#f06b1e
}

footer {
color: #f06b1e;
text-align: center;
}

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}