@import url("https://fonts.googleapis.com/css?family=Poppins");
/* Doodle Stage */
#stage {
  background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/1488095/baconStrip.svg);
  height: 268px;
  width: 600px;
  -webkit-animation: bounceInUp 1s 1;
          animation: bounceInUp 1s 1;
}
body{
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/1488095/cuttingboard-01.svg);
  no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

h1 {
  font-size: 170px;
  text-align: center;
  color: tan;
  text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
  -webkit-animation: rotateInDownLeft 3s 1;
          animation: rotateInDownLeft 3s 1;
}

img {
  width: 15%;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

div:hover img {
  -webkit-transform: scale(1) rotate(360deg);
          transform: scale(1) rotate(360deg);
}

button {
  font-family: 'Poppins', sans-serif;
  color: maroon;
}
