:root {
  font-size: 600%;
  font-family: "Swiss Now";
}

body {
  overflow: hidden;
  animation: colorbeat 0.2s infinite;
}

.text {
  transform: rotate(-90deg);
  animation: jackson 0.2s infinite alternate;
  animation-timing-function: ease-in-out;
}

h1 {
  color: white;
  line-height: 2rem;
  margin-left: 10rem;
}

@keyframes jackson {
  from { font-variation-settings: 'ital' 0 }
  to { font-variation-settings: 'ital' 12 }
}

@keyframes colorbeat {
  from { background-color: rgb(105, 195, 230); }
  to {  background-color: black; }
}