body {
  font-family: "Open Sans", sans-serif;
  background-color: #555555;
}

h1 {
  padding: 25px 10px;
  text-transform: uppercase;
  color: white;
  font-size: 4em;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  animation-duration: 2s;
  animation-name: slide-in;
}

@keyframes slide-in {
  from {
    translate: 0 150vw;
    scale: 100% 1;
  }
  to {
    translate: 0 0;
    scale: 100% 1;
  }
}

a {
  color: #e1e1e1;
  text-decoration: none;
}

a:visited {
  color: #e1e1e1;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
}

nav ul {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.social {
  font-size: 1.2em;
}
