@import url('https://fonts.googleapis.com/css?family=Quicksand');
body {
  width: 100%;
  margin: 0;
  background: #c9ecff;
  text-align: center;
  font-size: 20px;
  font-family: 'Quicksand', sans-serif;
}
header{ 
  width: 100%;
}
h1 {
  text-transform: uppercase;
  margin-bottom: 0;
}
p {
  margin-top: 0;
  letter-spacing: 2px;
}
#kitchen {
  width: 100%;
  margin-top: 5%;
}

#skillet {
 position: absolute;
 left: 20%;
 transition: .2s all;
}
#egg {
  position: absolute;
  z-index: 1000;
  left: 5%;
  visibility: hidden;
 
  
  
}

.lookatme {
  animation-name: lookatme;
  animation-duration:3s;
  animation-iteration-count: infinite;
}
.happyskillet {
  animation-name: happyskillet;
  animation-duration:1s;
  animation-iteration-count: infinite;
}

@keyframes lookatme{
  0% {
    transform: translate(0,0)
  }
  50% {
    transform: translate(0,0)
  }
  60% {
    transform: translate(0,-10%)
  }
  68% {
    transform: translate(0,-5%)
  }
  74% {
    transform: translate(0,-12%)
  }
}

@keyframes happyskillet {
  0% {
    transform: translate(0,0)
  }
  50% {
    transform: translate(0,-5%)
  }
}

.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.buttonz {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

/* Style the Image Used to Trigger the Modal */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  visibility: hidden;
  z-index: 3;
}



#modalPopUp{
  border-radius: 5px;

}