* {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  color: #FFF;
  background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  basckground: linear-gradient(-45deg, #00A6D6, #006EC7, #E73C7E, #EE7752);


  background-size: 400% 400%;
  -webkit-animation: Gradient 15s ease infinite;
  -moz-animation: Gradient 15s ease infinite;
  animation: Gradient 15s ease infinite;

  font-family: 'Roboto', sans-serif;
}

a {
  color: #FFF;
}

a:hover {
  color: #DDD;
}


h1 {
  font-size: 40px;
  padding-bottom: 10px;
}

h2 {
  font-size: 30px;
  font-weight: 300;
}

p {
  font-size: 24px;
}


@media (prefers-color-scheme: dark) {
  body {
    color: #EEE;
    background: linear-gradient(-45deg, #000, #444, #888, #AAA);
    background-size: 400% 400%;
  }
}
