
@font-face {
  font-family: 'Beiruti';
  src: url('fonts/beiruti/fonts/Beiruti[wght].woff2') format('woff2');
}

html, body {
  margin: 0;
}

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

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

}

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

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

h2 {
  font-family: 'Beiruti';
  font-size: 8rem;
  line-height: 6rem;
  letter-spacing: -10px;
  color: red;
  animation: vars2 2s infinite linear;
}

@keyframes vars {
  0%, 100% {
    font-variation-settings: "wght" 900;
    transform: scaleX(6); font-size: 10px;}
  }
  50% {
    font-variation-settings: "wght" 100;
    transform: scaleX(0.2); font-size: 80px;
  }

  @keyframes vars2 {
    0%, 100% {
      font-variation-settings: "wght" 100;
      font-size: 20rem;
    }
    50% {
      font-variation-settings: "wght" 100;
      font-size: 20rem;
      transform: scaleY(6); 
    }
