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

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

h1 {
  color: rgb(0, 0, 0);
  font-size: 14rem;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}



.word {
  display: inline-flex;
}

.mirrored {
  transform: scaleX(-1); 
  margin-left: 2rem; 
}



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

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

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

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

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

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





/* 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);
}