html {
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
}

h1 {
  font-size: 4rem;
  margin: 0;
  color: black;
}

footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}

#middle {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#homeH1 {
  animation: fadein 2.5s;
}

#none {
  text-decoration: none;
}

@keyframes fadein {
  from {opacity: 0}
  to {opacity: 1}
}
