/* Typography extends */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  height: 100%;
  background: #080808;
}

h1,
h2,
p,
a {
  color: #f2f3f4;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;

  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;

  -webkit-animation: fadein 5s;
  -moz-animation: fadein 5s;
  -ms-animation: fadein 5s;
  -o-animation: fadein 5s;
  animation: fadein 5s;

  text-align: center;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.logo {
  position: relative;
  margin: 0 auto;
}

.title {
  color: #080808;
  background: #f2f3f4;
  font-weight: bold;
  padding: 4px 10px;
  max-width: 14rem;
  margin: 0 auto;
}

.title a {
  color: #080808;
  text-decoration: none;
}

h1 {
  font-size: 7rem;
  margin: 0;
}

.name {
  position: absolute;
  top: 10px;
  right: -41px;
  color: #f2f3f4;
  letter-spacing: 2px;
}

footer {
  color: #4d4d4d;
  bottom: 20px;
  font-size: 14px;
  position: absolute;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

footer li {
  list-style-type: none;
  display: inline-block;
  margin-right: 30px;
}

footer li a {
  color: #4d4d4d;
  display: inline-block;
  margin: 0 20px;
  position: relative;
  text-decoration: none;
}

footer li.first a {
  margin: 0;
}

footer li a:hover {
  color: #f2f3f4;
}

footer li a:after {
  content: "";
  height: 1px;
  background: #f2f3f4;
  position: absolute;
  pointer-events: none;
  bottom: -5px;
  left: 0;
  right: 0;
  opacity: 0;
  transform: scale(0, 1);
  transition: all 200ms;
}

footer li a:hover:after {
  opacity: 1;
  transform: scale(1, 1);
}

@media only screen and (max-width: 40em) {
  footer li {
    margin: 0;
    margin-bottom: 1rem;
  }

  footer li.first {
    display: block;
    width: 100%;
  }
}
