* {
   padding: 0;
   margin: 0;
   box-sizing: border-box;
}
 /*body {
   background-color: black;
}*/
 #fog {
   position: absolute;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   overflow: hidden;
   pointer-events: none;
}
 #fog:before, #fog:after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 300%;
   background-size: contain;
   background-position: center;
   background-repeat: repeat-x;
}
 #fog:before {
   background-image: url('https://res.cloudinary.com/dkr52htco/image/upload/v1536173269/fog-1.png');
   animation: drift 60s linear 0s infinite;
}
 #fog:after {
   background-image: url('https://res.cloudinary.com/dkr52htco/image/upload/v1536173269/fog-2.png');
   animation: drift 25s linear 0s infinite;
}
 @keyframes drift {
   from {
     transform: translate3d(0, 0, 0);
  }
   to {
     transform: translate3d(-200vw, 0, 0);
  }
}

a{
  text-decoration: none;
  color: black;
  font-size: 20px;
}
a:hover{
  font-size: 25px;
}
button{
  margin-top: 20px;
  position: relative;
  left:46.3%;
  padding: 10px 10px 10px 10px;
  border-radius: 5px;
  border:none;
  font-weight: bold;
  font-size: 15px;
  outline: none;
}
button:hover{
  background: green;
  opacity: 0.8;
  cursor: pointer;
}
.container {
  width: 70%;
  margin: auto;
  text-align: center;
}

.hand {
  text-align: center;
  display: inline-block;

}

body {
  background-color: #1F3B4D;/*#393E46*/

}

h2 {
  margin: 30px;
  font-family: 'Lobster', cursive;
  text-shadow: 5px 0 #232931;
  font-size: 6rem;
  color: #4ECCA3;
}

p {
  font-size: 2rem;
  color: #4ECCA3;
  font-family: 'Indie Flower', cursive;
}

img {
  padding-top: 5%;
  width: 80%;
}

footer {
  margin-top: 9%;
  color: #EEEEEE;
  text-align: center;
  font-family: 'Indie Flower', cursive;

}

 