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

body {
  background: rgb(8, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}


.rotated {
  transform: rotate(-15deg); /* Equal to rotateZ(45deg) */
  background-color: rgb(255, 255, 255);
}

.bazooka {
  /* box-shadow: 12px 12px 5px red, 0 0 0.5em rgb(53, 53, 255), 0 0 0.1em rgb(0, 251, 255); */
  transform: rotate(-15deg);
  border-top: 5rem rgb(43, 6, 6) solid;
  border-bottom: 5rem rgb(13, 21, 61) solid; 
  margin: -6rem;
  width: 300vw;
  vertical-align: middle;
}


h1 {
  text-align: center;
  /* font-weight: 100; */
  /* padding: 0.1rem; 0 0 0; */
  margin: -0.25rem 0 -0.4rem 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(255, 179, 201);
}
#s2 {
  color: rgb(106, 245, 255);
}
#s3 {
  color: rgb(249, 144, 175);
}
#s4 {
  color: rgb(106, 245, 255);
}
#s5 {
  color: rgb(248, 125, 162); 
  }
#s6 {
  color: rgb(106, 245, 255);
}
#s7 {
  color: rgb(248, 125, 162); 
  }

  span {
    animation-name: foo;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(linear(2, 0.75 25%, 1));
    
    animation-direction: alternate;
  }
  
  @keyframes foo {
    from {   font-variation-settings: "XROT" 45, "YROT" 45; font-size: 180%; opacity: 0%;}
    to {   font-variation-settings: "XROT" -45, "YROT" -45;font-size: 200%;
      text-shadow: 12px 12px 5px rgb(255, 38, 38), 0 0 0.5em rgb(82, 82, 248), 0 0 0.3em rgb(0, 251, 255);}
  }

  /* font-variation-settings:
  "XROT" <rotation in x>,
  "YROT" <rotation in y>; */
  
  #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; }
