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

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

h1 {
  font-family: 'Roboto Flex';
  color: rgb(255, 255, 255);
  font-size: 13rem;
  margin: auto;
  white-space: nowrap; 
  display: inline-block;
}

p {
  color: rgb(0, 0, 0); 
  font-size: 1rem;
  text-align: center;
  margin: auto;
}


/* Roboto Buchstaben */
.g {
  font-family: 'Roboto Flex';
  font-variation-settings: "wght" 950;
}

.o1 {
  font-family: 'Roboto Flex';
  font-variation-settings: "wght" 800;
}

.o2 {
  font-family: 'Roboto Flex';
  font-variation-settings: "wght" 650;
}

.g2 {
  font-family: 'Roboto Flex';
  font-variation-settings: "wght" 500;
}

.l {
  font-family: 'Roboto Flex';
  font-variation-settings: "wght" 350;
}

.e {
  font-family: 'Roboto Flex';
  font-variation-settings: "wght" 200;
}




/* Gridline Trial Buchstaben */
.gl-g {
  font-family: 'Gridline Trial';
  font-variation-settings: "wght" 900, "BACK" 1, "RECT" 1, "ELSH" 1;
}

.gl-o1 {
  font-family: 'Gridline Trial';
  font-variation-settings: "wght" 900, "BACK" 150, "RECT" 1, "ELSH" 1;
}

.gl-o2 {
  font-family: 'Gridline Trial';
  font-variation-settings: "wght" 900, "BACK" 300, "RECT" 1, "ELSH" 1;
}

.gl-g2 {
  font-family: 'Gridline Trial'; 
  font-variation-settings: "wght" 900, "BACK" 450, "RECT" 1, "ELSH" 1;
}

.gl-l {
  font-family: 'Gridline Trial';
  font-variation-settings: "wght" 900, "BACK" 600, "RECT" 1, "ELSH" 1;
}

.gl-e {
  font-family: 'Gridline Trial';
  font-variation-settings: "wght" 900, "BACK" 750, "RECT" 1, "ELSH" 1;
}




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