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

body {
  background-color: #00a1de;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

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

#gridcontainer {
  display: grid;
  grid-template-columns: 50vh;
  grid-template-rows: repeat(21, 2vh);
  justify-items: center; 
  align-items: center; 
  position: relative;
  bottom: 4vh;
}

.textcontainer {
  display: flex;
  justify-content: flex-start; 
  align-items: center;
  position: relative;
  width: 100%;
}


p {
  color: white;
  font-weight: 100;
  font-variation-settings: "slnt" 0;
  font-size: 50vh;
  line-height: 0vw;
  margin: 0;
  text-align: left;
  position: absolute;
  transition-duration: 1s;
}

p:hover {
  font-variation-settings: "slnt" -10;
  font-weight: 700;
  color: #00a1de;
}
