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

body {
  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(0, 0, 0);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 10rem;
}

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

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



/*  Buchstaben */
.g {
  font-variation-settings: "wght" 100;
}

.o1 {
  font-variation-settings: "wght" 260;
}

.o2 {
  font-variation-settings: "wght" 420;
}

.g2 {
  font-variation-settings: "wght" 580;
}

.l {
  font-variation-settings: "wght" 740;
}

.e {
  font-variation-settings: "wght" 900;
}



/* Super Grid */

.wrapper {
  background-color: rgb(255, 255, 255);
  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(0, 0, 0);
  background-color: transparent;
  border: none;
}

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

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