:root {
  font-size: 100%;
  font-family: 'Roboto Condensed'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

body {
  background-color: rgb(0, 0, 0);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255); 
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  height: 96vh;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.word {
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 10rem;
}

.normal {
  transform: rotate(0deg);
}

.rotated-90 {
  transform: rotate(90deg);
}




/* Animation */
@keyframes weight-animation {
  from { font-variation-settings: "wght" 100; }
  to { font-variation-settings: "wght" 900; }
}



/* Buchstaben */
.g {
  animation: weight-animation 2s infinite alternate ease-in-out;
  animation-fill-mode: both;
}

.o1 {
  animation: weight-animation 2s infinite alternate ease-in-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;

}

.o2 {
  animation: weight-animation 2s infinite alternate ease-in-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;

}

.g2 {
  animation: weight-animation 2s infinite alternate ease-in-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;

}

.l {
  animation: weight-animation 2s infinite alternate ease-in-out;
  animation-delay: 0.8s;
  animation-fill-mode: both;

}

.e {
  animation: weight-animation 2s infinite alternate ease-in-out;
  animation-delay: 1s;
  animation-fill-mode: both;
}



/* Super Grid */
.wrapper {
  background-color: rgb(0, 0, 0);
  display: grid;
  grid-template-columns: 1fr;
}

.item1 {
  grid-column: 1 / span 1;
  align-content: center;
  justify-self: center;
  height: 94vh;
  width: 100%;
}

.item-container {
  display: flex;
  justify-content: center;
  height: 6vh;
  gap: 10rem;
}

.item2, .item3, .item4 {
  position: relative;
  align-content: top;
  justify-self: center;
}



/* Buttons */
.button {
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(255, 255, 255);
  background-color: transparent;
  border: none;
}

.button-link {
  text-decoration: none;
  color: inherit;
}

.button-link:hover {
  color: rgb(66, 133, 244);
}
