html,
body {
  font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
    Arial, sans-serif;
  height: 100%;
  margin: 0;
}

body {
  background: linear-gradient(
    135deg,
    rgba(255, 192, 203, 1) 0%,
    rgba(173, 216, 230, 1) 50%,
    rgba(255, 255, 224, 1) 100%
  );
  color: rgba(240, 240, 240, 0.9);
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  justify-content: space-between;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  text-align: center;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  opacity: 0.5;
}

div {
  margin: auto;
  max-width: 666px;
  position: relative;
  z-index: 10;
  transition: color 1s ease-in-out;
}

div:hover {
  color: rgba(10, 10, 10, 0.666);
}

footer {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin-top: auto;
  padding: 1rem;
  position: relative;
  text-align: center;
  z-index: 10;
}

footer p {
  margin: 0;
}

footer a {
  color: rgba(10, 10, 10, 0.666);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
