:root {
  --color-background: #000;
  --color-text: #FFF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,
    segoe ui, helvetica neue, Cantarell, Ubuntu, roboto, noto, helvetica,
    arial, sans-serif;
  color: var(--color-text);
}

body {
  background-color: var(--color-background);
  display: grid;
  place-items: center;
  min-height: 100dvh;
}

main {
  text-align: center;
}

h1 {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(3.05rem, 3.54vi + 2.17rem, 5rem);
  letter-spacing: 10px;
}

p {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(1.25rem, 0.61vi + 1.1rem, 1.58rem);
  animation: fadeInFromBottom 0.8s ease;
}

@keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
