* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #333;
  overflow: hidden;
}

.letter-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.letter {
  position: absolute;
  font-size: 40px;
  color: rgb(254, 238, 0);
  font-family: 'Bodoni Moda';
  animation: textanimo 1s linear infinite;
}



@keyframes textanimo {
  0% {
    font-family: 'Bodoni Moda';
    font-size: 40px;
    font-variation-settings: 'wght' 900, 'opsz' 6;
  }
  50% {
    font-size: 90px;
    font-variation-settings: 'wght' 400, 'opsz' 96;
  }
  100% {
    font-size: 40px;
    font-variation-settings: 'wght' 900, 'opsz' 6;
  }
}
