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

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

#grund-flexbox {
  display: flex;
  height: 100vh;
  justify-content: flex-start;
  align-items: center;
}


#gridcontainer {
  display: grid;
  grid-template-columns: repeat(8, 12.5vw);
  grid-template-rows: repeat(3, 25vh);
  justify-items: center; 
  align-items: center; 
}

.textcontainer {
  display: flex;
  width: 12.5vw;
  height: 25vh;
  justify-content: center; 
  align-items: center;
  position: relative;
  font-weight: 100;
  transition-duration: 7s;
  text-shadow: 100px 100px 20px #e27ea6;
}

.textcontainer:hover {
  font-weight: 400;
  transition-duration: 0.5s;
  text-shadow: 100px 100px 100px #00a1de;
}

.anderefarbe:hover {
  font-weight: 400;
  transition-duration: 0.5s;
  text-shadow: 100px 100px 150px #009b3a;
}


p {
  color: #f9e300;
  font-size: 50vh;
  line-height: 0vh;
  margin: 0;
  text-align: center;
  pointer-events: none;
}



