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

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(-30%)
}

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

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

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

}

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

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

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