:root {
  font-size: 100%;
  font-family: 'harber'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

body {
  background-color: red;
  margin:0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;


}

.flex-container {
  display: flex;
  /* flex-wrap: wrap;
  align-items: center;
  align-content: center; */
  font-size: 14vw;

}

.flex-container div {
  height: 15vw;
  width: 15vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item1 {
  color: red;
  animation: my-anim 3s infinite alternate ease-in-out;
  animation-delay: 0.1s;
  /* display: flex; */
  background-color: blue;
  border-radius: 200px;
}

  .item2 {
    color: red;
    animation: my-anim 3s infinite alternate ease-in-out;
    animation-delay: 0.2s;
    /* display: flex; */
    background-color: yellow;
    border-radius: 200px;
    padding: -10px;

  }
    .item3 {
      color: red;
      animation: my-anim 3s infinite alternate ease-in-out;
      animation-delay: 0.3s;
      /* display: flex; */
      background-color: blue;
      border-radius: 200px;
      padding: -10px;

}
.item4 {
  color: red;
  animation: my-anim 3s infinite alternate ease-in-out;
  animation-delay: 0.4s;
  /* display: flex; */
  background-color: yellow;
  border-radius: 200px;
  padding: -10px;

}

.item5 {
  color: red;
  animation: my-anim 3s infinite alternate ease-in-out;
  animation-delay: 0.5s;
  /* display: flex; */
  background-color: blue;
  border-radius: 200px;
  padding: -10px;

}
.item6 {
  color: red;
  animation: my-anim 3s infinite alternate ease-in-out;
  animation-delay: 0.6s;
  /* display: flex; */
  background-color: yellow;
  border-radius: 200px;
  padding: -10px;

}

@keyframes my-anim{
  from { font-variation-settings: 'NSSS' -10, 'wght' 0; transform: translateY(-50vh) }
  to { font-variation-settings: 'NSSS' 10, 'wght' 10; transform: translateY(50vh)}
}
