
@font-face {
  font-family: 'UTMorph-variable';
  src: url('fonts/UTMorph-variable.woff2') format('woff2');
}

html, body {
  margin: 0;
}

body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'UTMorph-variable';
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f8f8f8;
  transform: translateY(-30%)

}

.container {
  display: flex;
  gap: 10px;
}

.column {
  display: flex;
  flex-direction: row;
  align-items: center;
}

h1 {
  font-family: 'UTMorph-variable';
  font-size: 12rem;
  line-height: 8rem;
  color: red;
  animation: breit 3s infinite ease-in-out;

}

h2 {
  font-family: 'UTMorph-variable';
  font-size: 12rem;
  line-height: 8rem;
  color: red;
  animation: schmal 3s infinite ease-in-out;
}

@keyframes breit {
  0%, 100% {
    font-variation-settings: 'PSTV' 0, 'NGTV' 40;
  }
  50% {
    font-variation-settings: 'PSTV' 100, 'NGTV' 40;
  }
}

  @keyframes schmal {
    0%, 100% {
      font-variation-settings: 'PSTV' 100, 'NGTV' 40;
    }
    50% {
      font-variation-settings: 'PSTV' 0, 'NGTV' 40;
    }
