/* No classes! OMG! is this good or bad?! */

body {
  background-color: #3FA9F5;
  color: #fff;
  font-family: helvetica, arial, sans-serif;
  text-align: center;
  margin: 0;
  animation: bgc 15s linear 1s infinite alternate;
  overflow: hidden;
}

main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}

h1 {
  font-size: 127px;
  margin-bottom: 10px;
  letter-spacing: -.05em;
  font-weight: 600;
  margin-top: 0;
  text-shadow: rgba(8, 8, 8, 0.14901960784313725) 2px 3px 0;
}

p {
  font-size: 60px;
  font-weight: 600;
  margin-top: 0;
  letter-spacing: -.04em;
  margin-bottom: 40px;
  text-shadow: rgba(8, 8, 8, 0.14901960784313725) 2px 3px 0;
}

a {
  color: #fff;
}

.mail {
  color: #fff;
  font-size: 40px;
  margin-bottom: 40px;
  font-weight: 600;
  display: block;
  text-decoration: none;
  text-shadow: rgba(8, 8, 8, 0.14901960784313725) 2px 3px 0;
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  font-size: 20px;
  font-weight: 100;
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
}

@keyframes bgc {
  0% {
    background-color: #3FA9F5;
  }

  25% {
    background-color: #E35B5D;
  }

  50% {
    background-color: #E1B866;
  }

  100% {
    background-color: #BD5532;
  }

  75% {
    background-color: #373B44;
  }
}
