:root {
  font-family: 'Orbitron'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

body {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  background-color: #f9e300;
  overflow: hidden;
}


#grundflexbox {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
}

#gridcontainer {
  display: grid;
  grid-template-columns: 100vw;
  grid-template-rows: 230px 230px 230px;
  align-items: center;
}

p {
  font-size: 2000%;
  line-height: 0vh;
  margin: 0;
  padding: 0;
  font-weight: 900;
  line-height: 0;
  text-transform: uppercase;
}

.linecontainer {
  position: relative;
  bottom: 7px;
}

/* Erste Zeile */

#orangeline1 {
  position: absolute;
  color: #f9461c;
  animation-name: sabrinas-line-animation;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}

#pinkline1 {
  position: absolute;
  color: #e27ea6;
  animation-name: sabrinas-line-animation;
  animation-duration: 20s;
  animation-delay: -2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}

#greenline1 {
  position: absolute;
  color: #009b3a;
  animation-name: sabrinas-line-animation;
  animation-duration: 22s;
  animation-delay: -9s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}

#purpleline1 {
  position: absolute;
  color: #522398;
  animation-name: sabrinas-line-animation;
  animation-duration: 17s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}

#brownline1 {
  position: absolute;
  color: #62361b;
  animation-name: sabrinas-line-animation;
  animation-duration: 18s;
  animation-delay: -6s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}


/* Zweite Zeile */

#orangeline2 {
  position: absolute;
  color: #f9461c;
  animation-name: sabrinas-line-animation;
  animation-duration: 14s;
  animation-delay: -2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}

#pinkline2 {
  position: absolute;
  color: #e27ea6;
  animation-name: sabrinas-line-animation;
  animation-duration: 22s;
  animation-delay: -5s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}

#greenline2 {
  color: #009b3a;
  position: absolute;
  animation-name: sabrinas-line-animation;
  animation-duration: 15s;
  animation-delay: -7s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}

#purpleline2 {
  position: absolute;
  color: #522398;
  animation-name: sabrinas-line-animation;
  animation-duration: 19s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}

#brownline2 {
  position: absolute;
  color: #62361b;
  animation-name: sabrinas-line-animation;
  animation-duration: 14s;
  animation-delay: -9s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}


/* Dritte Zeile */

#orangeline3 {
  position: absolute;
  color: #f9461c;
  animation-name: sabrinas-line-animation;
  animation-duration: 19s;
  animation-delay: -7s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}

#pinkline3 {
  position: absolute;
  color: #e27ea6;
  animation-name: sabrinas-line-animation;
  animation-duration: 15s;
  animation-delay: -3s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}

#greenline3 {
  position: absolute;
  color: #009b3a;
  animation-name: sabrinas-line-animation;
  animation-duration: 17s;
  animation-delay: -18s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}

#purpleline3 {
  position: absolute;
  color: #522398;
  animation-name: sabrinas-line-animation;
  animation-duration: 13s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}

#brownline3 {
  position: absolute;
  color: #62361b;
  animation-name: sabrinas-line-animation;
  animation-duration: 16s;
  animation-delay: -2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-direction: alternate;
}

/* Keyframe */

@keyframes sabrinas-line-animation {
  from { transform: translateX(100%); }
  to { transform: translateX(-200%); }
}