* {
  transition: transform 100ms linear;
}
html {
  height: 100%;
  background: #0f1010;
}
body {
  height: 100%;
  color: #9CA1A0;
  font-weight: 300;
  font-family: "Lato", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0 20px;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  margin-top: 0;
}
ul {
  list-style: none;
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: -10vh;
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.logo svg {
  transform: scale(0.55);
}
.description {
  text-align: center;
  margin-bottom: 1%;
}
nav {
  color: #4FD3AF;
}
nav > ul {
  padding: 0;
  margin: 0;
  display: flex;
}
nav li {
  font-size: 1.4em;
  margin-right: 0;
}
nav li:last-child {
  margin-right: 0;
}
nav a:hover {
  transform: translateY(-5px);
}
nav li:not(:last-child):after {
  display: inline;
  padding: 0 24px;
  content: "\25e6";
  font-size: 0.8em;
}
@media (max-width: 550px) {
  body {
    padding: 0 30px;
  }
  body, h2 {
    font-size: 1.1em;
    line-height: 1.5;
  }
  nav li {
    font-size: 1em;
  }
  nav li:not(:last-child):after {
    padding: 0 10px;
  }
  .logo svg {
    transform: scale(0.45)
  }
  .description {
    margin-top: -14px;
  }
}
@media (max-width: 360px) {
  body, h2 {
    font-size: 1em;
  }
  nav li:not(:last-child):after {
    padding: 0 8px;
  }
  .logo svg {
    transform: scale(0.35)
  }
  .description {
    margin-top: -28px;
  }
}
