:root {
  font-size: 500%;
  font-family: "Linefont";
}


body {
  background-color: rgb(105, 195, 230);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  overflow: hidden;
}

h1 {
  text-align: center;
  line-height: 5rem;
  font-weight: 40;
  color: white;
}

.container {
  display: flex;
}

.A {
  animation: vibra 0.25s infinite alternate;
}

@keyframes vibra {
  from { font-variation-settings: 'wdth' 50 }
  to { font-variation-settings: 'wdth' 500 }
}