: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: center;
  width: 98vw;
  height: 98vh;
}

.oval {
  top: 150px;
  z-index: 1;
  animation: plattenteller 1s infinite
}

.people {
  z-index: 2;
}




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

@keyframes plattenteller {
  from {
    transform: rotateX(-0deg)
  }

  to {
    transform: rotateY(360deg)
  }
}


@keyframes applaus {
  from {
    transform: translate(0rem)
  }

  to {
    transform: translate(2rem)
  }
}