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

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


#gridcontainer {
  display: grid;
  grid-template-columns: repeat(10, 10vw);
  grid-template-rows: repeat(6, 16.6vh);
  justify-items: center; 
  align-items: center; 
  position: absolute;
}

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


p {
  color: white;
  font-size: 25vh;
  line-height: 5vw;
  margin: 0;
  font-variation-settings: "wght" 100, "wdth" 25;
  text-align: center;
  position: absolute;
  transition-duration: 3s;
}

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