: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: white;
  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; /* Diese Box ist weiter hinten */
  animation: sprungfederquer 0.15s infinite;
  animation-timing-function: ease-in-out;
}

.boxright {
  text-align: right;
  color: rgb(105, 195, 230);
  z-index: 1; /* Diese Box ist weiter hinten */
}

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

@keyframes sprungfederquer {
  from { font-variation-settings: 'wdth' 75 }
  to { font-variation-settings: 'wdth' 100 }
}