@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Merriweather:ital@0;1&family=Raleway&display=swap);

html, body {
  height: 100%;
  margin: 0;
  text-align: center;
  background-color: #111;
  color: #ddd;
  font-family: Merriweather, Tahoma, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

h1 {
  font-size: 150px;
  padding: 1em;
}

footer {
  font-style: italic;
}

#neps {
  transition: color 3s ease-in-out;
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 75px;
  }
}

@media only screen and (max-width: 400px) {
  h1 {
    font-size: 50px;
  }
}
