: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;
}

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


.box {
  position: absolute;
  text-align: left;
}


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


.people {
  z-index: 2;
  animation: pulsschnell 0.3s infinite alternate;
}

.peopleback {
  z-index: 1;
  animation: big 0.3s infinite alternate;
}

@keyframes pulsschnell {
  from { font-variation-settings: 'wght' 100 }
  to { font-variation-settings: 'wght' 900 }
}

@keyframes big {
  from { transform: scale(1) }
  to { transform: scale(3) }
}