:root {
  font-size: 1000%;
  font-family: "Instrument Sans", sans-serif;
}


/* // <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;
}

.schreibtisch {
  position: relative;
  width: 98vw;
  height: 98vh;
}

.box {
  position: absolute;
  /* text-align: center; */
  width: 98vw;
  height: 98vh;
}

.boxleft {
  text-align: left;
  color: white;
  z-index: 2;
  animation: sprungfederdick 0.3s infinite;
  animation-timing-function: ease-in-out;
}

.boxright {
  text-align: right;
  z-index: 1;
  animation: sprungfederdick 0.3s infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0.15s;
}

h1 {
  /* color: white; */
  margin-top: 0rem;
  padding-left: 0rem;
  padding-right: 0.1rem;
  letter-spacing: -0.1rem;
  line-height: 0.715;
}

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

@keyframes sprungfederdick {
  from { font-variation-settings: 'wght' 400 }
  to { font-variation-settings: 'wght' 1000 }
}