.foodinator {
  font-family: Tahoma;
  width: auto;
  background: #fff;
  border-radius: .5rem;
  padding: 3rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
}
.foodinator .food {
  text-align: center;
  margin-bottom: 3rem;
}
.foodinator .food h1 {
  font-size: 22px;
  margin-top: 10px;
  font-family: Georgia;
  line-height: 1.3;

}
.foodinator .food .no-food {
  height:140px;
  color: #ddd;
  -webkit-animation: wobble 1.5s infinite;
          animation: wobble 1.5s infinite;
}
.foodinator .btn {
  background: #dd313e;
  border-radius: 46px;
  color: #fff;
  border: 0;
  display: block;
  cursor: pointer;
  font-size: 20px;
  font-family: "Tahoma";
  text-transform: uppercase;
  padding: 10px 40px 10px 40px;
   margin-left: auto;
    margin-right: auto;
  width:auto;

  position:center;
  transition: all .3s ease;
}
.foodinator .btn:focus {
  outline: 0;
}
.foodinator .btn:hover {
  background: #5f188c;
}

* {
  box-sizing: border-box;
}

@-webkit-keyframes wobble {
  0%,
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10%,
  30% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  20%,
  40% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}

@keyframes wobble {
  0%,
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10%,
  30% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  20%,
  40% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  min-height: 100vh;
  background: #1a1a1a;
    background-image: url(../media/bg.png);
  background-size: cover;
    white-space: pre-line;

}
body .instagram {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  opacity: .5;
  transition: all .3s ease;
  cursor: pointer;
  font-size: 1.25rem;
  display: block;

}


.strong {font-weight:bold;}

/* Smartphones (portrait and landscape) ----------- */

@media only screen and (max-width : 480px) {
.foodinator .food h1  {
    font-size:18px;
    line-height:1.1;
  }
     .foodinator  {
   
    width: 80%;
   
   }
   
.face     {
   width: 180px;
  }
  
   .foodinator .btn {
  font-size:16px;
  }
  
}

@media only screen and (max-width : 360px) {
.foodinator .food h1  {
    font-size:16px;
    line-height:1.1;
  }
     .foodinator  {
   
    width: 80%;
   
   }
   
.face     {
   width: 160px;
  }
  
   .foodinator .btn {
  font-size:14px;
  padding: 10px 20px 10px 20px;
  
  }
  
}



@media only screen and (min-width : 481px) and (max-width : 800px) {
.foodinator .food h1  {
    font-size:18px;
    line-height:1.2;
  }
  
 .foodinator  {
      width: 80%;
  }
  
  .face  {
   width: 200px;
  }
  
   .foodinator .btn {
  font-size:16px;
  }
 
}

@media only screen and (min-width : 801px)  {
.foodinator .food h1 {
 font-size:22px;
    line-height:1.2;
		
  }
  
 .foodinator  {
      width: 90%;
  }
   
    .face  {
   width: 200px;
  }
}


@media only screen and (max-height : 480px) {
.foodinator .food h1 {
 font-size:16px;
    line-height:1.2;
  }
  
     .foodinator  {
   
    width: 90%;
   
   }
   
     .face  {
   width: 150px;
  }
  
  .foodinator .btn {
  font-size:17px;
  }
}
