:root {
  font-size: 800%;
  font-family: "WHOA";
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row: 1;
  Justify-items: center;
  align-items: center;
}

body {
  background-color: rgb(105, 195, 230);
  overflow: hidden;
}



.LOVE {
  grid-column: 1;
  grid-row: 1;
  animation: brrr 0.5s linear infinite, bigger 0.5s infinite alternate;
  animation-timing-function: ease-in-out;
}

.BEATS {
  grid-column: 2;
  grid-row: 1;
  animation: booo 0.3s infinite alternate, bigger 0.5s infinite alternate;
  animation-timing-function: ease-in-out;
  animation-delay: 0.5s;
}


h1 {
  margin-top: 1.5rem;
  color: white;
}

@keyframes brrr {
  from { font-variation-settings: 'vert' -1000, 'hrzn' -1000 }
  to { font-variation-settings: 'vert' 1000, 'hrzn' 1000 }
}

@keyframes booo {
  from { font-variation-settings: 'vert' 1000, 'hrzn' 1000 }
  to { font-variation-settings: 'vert' -1000, 'hrzn' -1000 }
}

@keyframes bigger {
  from {
    scale: 600%
  }

  to {
    scale: 1000%
  }
}