html {
  height: 100%;
  font-size: 150%;
  font-weight: 300;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab) !important;
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  background-position: 0 0;
  background-repeat: no-repeat;
  color:#222;
}

section {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

h1 {
  font-size: 1.5rem;
  font-weight: 400;
}

a {
  color: inherit;
}

strong {
  font-weight: 500;
}

.button {
  display: inline-block;
  padding: 0.125em 0.5em;
  border: 1px solid currentColor;
  border-radius: 3px;
  text-decoration: none;
}

@keyframes gradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
