body {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: black;
  color: white;
}

main {
  position: absolute;
  max-width: 400px;
  top: 40%;
  left: 10%;
  margin-right: 30px;
  transform: translateY(-50%);
}
main ul {
  margin-top: 25px;
  padding: 0;
  list-style: none;
}
main ul li {
  display: inline-block;
  margin-right: 10px;
  font-size: 32px;
  opacity: 0.5;
  transition: opacity 0.2s;
}
main ul li:hover {
  opacity: 1;
}
main ul li a {
  color: white;
}

footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  padding-bottom: 10px;
  text-align: center;
  font-size: 10px;
  opacity: 0.3;
}

/*# sourceMappingURL=style.css.map */
