@font-face{
  font-family: HARRYP;
  src: url("../images/fonts/HARRYP.TTF");
}
@font-face{
  font-family: HARRYP;
  src: url("../images/fonts/HARRYP.eot");
}

body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  background-image: url("https://i.imgur.com/RCb11Q6.jpg");
  background-size: cover;
}
header{
  /* background-color: #840a0ac4; */
  background-color: #840a0aa3;
}
h1 {
 font-family: HARRYP;
 text-align: center;
 font-size: 75px;
 color:#e0be04eb;
 text-shadow: 4px 4px black;
}
u {
  font-family: HARRYP;
  text-align: center;
  color: darkgoldenrod;
  text-shadow: 2px 2px black;
}
p {
  font-family: HARRYP;
  text-align: center;
  color: darkgoldenrod;
  text-shadow: 2px 2px black;
  border-radius: 50%;
  -webkit-transition: -webkit-transform .8s ease-in-out;
          transition:         transform .8s ease-in-out;
}
p:hover {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
footer {
 position: fixed; bottom: 0;
 width: 100%;
 text-align: center;
 font-size: 18px;
 background-color: #840a0aa3;

}
#form {
  float:right;
  padding: 20px;
}
.row{
  margin-bottom: 10px;
}
.footprint {
  width: 25px;
  opacity: 0;
  animation-duration: 5s;
  animation-name: fadeOut;
  -moz-animation-duration: 5s;
  -moz-animation-name: fadeOut;
  -webkit-animation-duration: 5s;
  -webkit-animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
