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

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


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

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

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

}

p:hover {
  transform: rotate(720deg);
  transition-duration: 0.2s;
  color: #00a1de;
}
