
:root {
  font-size: 500%;
  font-family: "Gluten";
  
  /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

body {
  background: rgb(255, 255, 255);
  display:grid;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* transform: rotate(-15deg); */

}



.wrapper {
  position: fixed;
  padding: 0.5rem;
  /* height: 20rem; */
  display: grid; 
  /* grid-template-columns: repeat(auto-fill, minmax(min(18rem, 100%), 1fr)); */
  grid-template-columns: repeat(7,1fr);
  column-gap: 0rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;

  /* flex-direction: column; */


  /* Vertikale */
  /* align-items: center;    
}
*/
}



h1 {
  text-align: center;
  font-weight: 900; 

  /* font-weight: 100; */
  /* padding: 0.1rem; 0 0 0; */
  /* transform: rotate(-15deg);
  border-top: 3rem rgb(238, 3, 3) solid;
  border-bottom: 3rem rgb(43, 73, 226) solid; */
  /* font-variation-settings: 'slnt'-2; */

}


#s1 {
  color: rgb(238, 3, 3); 
  animation-name: smalls;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
#s2 {
  color: rgb(43, 73, 226);
  animation-name: smalls;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
#s3 {
color: rgb(238, 3, 3);
animation-name: smalls;
animation-duration: 4s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
animation-direction: alternate;
}
#s4 {  
  color: rgb(43, 73, 226);

}
#s5 {
  color: rgb(238, 3, 3);
  animation-name: bigO2;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function:cubic-bezier(2.3, 0.3, 0.8, 0.3);
  animation-direction: alternate;
  }
#s6 {
  color: rgb(43, 73, 226);
  animation-name: smalls;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
#s7 {
  color: rgb(238, 3, 3);
  }

/* 
  @keyframes my-oozer {
    from { font-weight: 400; font-size: 100%;}
    to { font-weight: 900; font-size: 300%; filter: blur(0.4rem); letter-spacing: -4rem; color: rgb(245, 148, 183);}
  } */

  /* @keyframes my-oozer {
    from {font-variation-settings: 'wdth' 75, 'wght' 400; transform: translateX(0rem), translateY(0rem)}
  to {font-variation-settings: 'wdth' 100, 'wght' 700; font-size: 200%; filter: blur(0.4rem); letter-spacing: -4rem; color: rgb(245, 148, 183); transform: translateX(-20rem), translateY(-20rem);}
  } */

  @keyframes bigO1 {
    from { font-variation-settings: 'slnt'0; font-weight: 100; font-size: 100%;}
    to { font-variation-settings: 'slnt'-15; font-weight: 900; transform: rotate(360deg); font-size: 300%; transform: rotate(0deg);/* filter: blur(0.4rem);  */ line-height: -3rem; letter-spacing: -4rem; color: rgb(245, 148, 183); transform: translateX(-40rem), translateY(-20rem);}
  }
  @keyframes bigO2 {
    from { font-variation-settings: 'slnt'0; font-weight: 100; font-size: 100%;}
    to { font-variation-settings: 'slnt'-15; font-weight: 900; transform: rotate(360deg); font-size: 1500%; transform: rotate(360deg);/* filter: blur(0.4rem);  */ color: rgb(245, 148, 183); }
  }

  @keyframes smalls {
    from { font-weight: 900; font-size: 100%;}
    to { font-weight: 100; font-size: 120%;}
  }


  

