:root {
  font-size: 100%;
  font-family: 'Rotor Variable underlay', sans-serif;
}



body {
  background-color: rgb(0, 0, 0);
  height: 100vh;
  display: grid;
  justify-content: center;
  align-items: center;
}

h1 {
  color: rgb(255, 255, 255);
  font-size: 12rem;
  font-weight: 500;
  margin: auto;
}

h1 span {
  display: inline-block;
  font-variation-settings: "wght" 100, "RTTX" 0, "DPTH" 20;
  transition: font-variation-settings 0.5s ease, font-style 1s ease;
}




/* Hover*/
h1 span:hover {
  font-variation-settings: "wght" 900, "RTTX" 360, "DPTH" 600;
  animation: color-refresh 4s infinite alternate;
}


@keyframes color-refresh {
  0% {
    color: rgb(66, 133, 244);
  }
  25% {
    color: rgb(234, 67, 5);
  }
  50% {
    color: rgb(251, 188, 4);
  }
  100% {
    color: rgb(52,168, 8);
  }
}



/* Super Grid */
.wrapper {
  background-color: rgb(0, 0, 0);
  display: grid;
  grid-template-columns: 1fr;
}

.item1 {
  grid-column: 1 / span 1;
  align-content: center;
  justify-self: center;
  height: 94vh;
  width: 100%;
}

.item-container {
  display: flex;
  justify-content: center;
  height: 6vh;
  gap: 10rem;
}

.item2, .item3, .item4 {
  position: relative;
  align-content: top;
  justify-self: center;
}



/* Buttons */

.button {
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(255, 255, 255);
  background-color: transparent;
  border: none;
}

.button-link {
  text-decoration: none;
  color: inherit;
}

.button-link:hover {
  color: rgb(66, 133, 244);
}