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

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


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

.bazooka {
  transform: rotate(-15deg);
  border-top: 5rem rgb(238, 3, 3) solid;
  border-bottom: 5rem rgb(43, 73, 226) 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; */
}

h1 span {display:inline-block; /*animation: my-druelli 2s infinite alternate*/}



h1:hover #s1,
h1:hover #s5 {
animation: my-druelli 2s infinite alternate; 
}

h1:hover #s2,
h1:hover #s4,
h1:hover #s6 {
animation: my-druellioppo 2s infinite alternate; 
}

h1:hover #s7,
h1:hover #s3 {
animation: my-druellioppobigga 2s infinite alternate; 
}

h1:hover #s4 {
animation: my-druellibigga 2s infinite alternate; 
}


#s1 {
  color: rgb(238, 3, 3)
}
#s2 {
  color: rgb(43, 73, 226);
}
#s3 {
color: rgb(238, 3, 3)
}
#s4 {
  color: rgb(43, 73, 226);
}
#s5 {
  color: rgb(238, 3, 3)
  }
#s6 {
  color: rgb(43, 73, 226);
}
#s7 {
  color: rgb(238, 3, 3)
  }

@keyframes my-dickduenn {
  from { font-weight: 100; }
  to { font-weight: 900;}}

@keyframes my-druelli {
    from { font-weight: 900; transform: rotate}
    to { font-weight: 300; transform: rotate(360deg); color: rgb(251, 176, 220)}
}
@keyframes my-druellioppo {
  from { font-weight: 900; transform: rotate}
  to { font-weight: 300; transform: rotate(-360deg) translateY(180px); color: rgb(251, 176, 220)}
}
@keyframes my-druellioppobigga {
  from { font-weight: 900; transform: rotate; font-size: 100%;}
  to { font-weight: 300; transform: rotate(-360deg) translateY(180px); font-size: 200%; color: rgb(251, 176, 220)}
}

@keyframes my-druellibigga {
  from { font-weight: 900; transform: rotate; font-size: 100%;}
  to { font-weight: 300; transform: rotate(360deg) translateY(-180px); font-size: 240%; color: rgb(251, 176, 220);}
}