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

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


#gridcontainer {
  display: grid;
  grid-template-columns: repeat(5, 20vw);
  grid-template-rows: repeat(3, 33.3vh);
  justify-items: center; 
  align-items: center; 
  position: absolute;
}

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


p {
  color: #f9e300;
  font-size: 50vh;
  line-height: 5vw;
  margin: 0;
  font-variation-settings: "wght" 1000, "wdth" 151;
  text-align: center;
  position: absolute;
  transition-duration: 5s;
}

p:hover {
  font-variation-settings: "wght" 100, "wdth" 151;
  transition-duration: 0.5s;
}