
:root {
  font-size: 800%;
  font-family: "Gluten";
  font-weight: 900;
  line-height: 0.7rem;
  /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

body {
  /* background-image: url("../Images/BG_pixel_dots_11.gif"); */
  background-image: radial-gradient(circle, #a8aff000 45%, rgb(255, 0, 68) 48%),
  radial-gradient(ellipse farthest-corner, #ffbde3 20%, #f72db7 80%);
/*   background: rgb(187, 2, 2); */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  rotate: -15deg;
}



/* .bazooka {
  height: 400px;
  border-right: 20rem;
  transform: rotate(-15deg);
  margin: -6rem;
  width: 300vw;
  vertical-align: middle;
} */


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

  /* flex-direction: column; */

  /* Horizontale */
  /* justify-content: center ; */
  /* justify-content: space-between; */
 /*  justify-content: space-around;


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

.wrapper > div {
  padding: 0.2; 
}

h1 {
  text-align: center;
  margin: -0.25rem 0 -0.4rem 0;
  


}
#s1 {
  color: rgb(253, 188, 206);
  transform: rotate(-45deg);
  mix-blend-mode:hard-light;
  display: inline-block;


}
#s2 {
  color: rgb(246, 119, 205); 
  transform: rotate(-90deg);
  mix-blend-mode:hard-light;
  display: inline-block;

}
#s3 {
color: rgb(254, 193, 230);
transform: rotate(-135deg);
mix-blend-mode:hard-light;
display: inline-block;

}
#s4 {
  color: rgb(234, 68, 192);
  transform: rotate(-180deg);
  mix-blend-mode:hard-light;
  display: inline-block;

}
#s5 {
  color: rgb(253, 160, 222);
  transform: rotate(45deg);
  mix-blend-mode:hard-light;
  display: inline-block;
  animation-name: bigO;

    }

#s6 {
  color: rgba(247, 128, 197, 0.816);
  transform: rotate(90deg);
  mix-blend-mode:hard-light;
  display: inline-block;

}
#s7 {
  color: rgba(252, 179, 212, 0.621);
  transform: rotate(135deg);
  mix-blend-mode:hard-light;
  display: inline-block;
  }

  span {
    animation-name: foo;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;

  }
  
  @keyframes foo {
    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: 150%;}
  }
  @keyframes bigO {
    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%;}
  }


  #s1 { animation-delay: 0.5s; }
  #s2 { animation-delay: 0.3s; }
  #s3 { animation-delay: 0.6s; }
  #s4 { animation-delay: 0.9s; }
  #s5 { animation-delay: 1.2s; }
  #s6 { animation-delay: 1.5s; }
  #s7 { animation-delay: 1.8s; }
 
  /*font-weight: <weight>*/
