:root {
  font-size: 100%;
  font-family: "Instrument sans";
}


/* // <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 400 to 700
// <width>: Use a value from 75 to 100

.instrument-sans-<uniquifier> {
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" <width>;
} */


body {
  background-color: rgb(105, 195, 230);
  overflow: hidden;
}

h1 {
  color: white;
  margin-top: 0rem;
  padding-left: 0rem;
  padding-right: 0.1rem;
  letter-spacing: -0.1rem;
  line-height: 0.715;
  animation: schaukel-text 0.3s infinite alternate ease-in-out, sprungfeder 0.3s infinite alternate;
  /* animation: sprungfeder 0.3s infinite alternate;
  animation-timing-function: ease-in-out; */
}

@keyframes sprungfeder {
  from { font-variation-settings: 'wdth' 75, 'wght' 400 }
  to { font-variation-settings: 'wdth' 100, 'wght' 1000 }
}



@keyframes schaukel-text {
  from {
    transform: rotate(-4deg)
  }

  to {
    transform: rotate(4deg)
  }
}