body {
    background-color: #662D91;  
    margin: auto;
    padding: 5vh;
}

/* 
    Farben:
    helllila #70379e 
    gelb #ffff00 
*/

img {
    width: 80%;
    height: auto;
}

/* Posittionierung horizontal */

.justify-start {
    display: grid;
}

.justify-center {
    display: grid;
}

.justify-end {
    display: grid;
}

.justify-start img{
    justify-self: start;
}

.justify-center img{
    justify-self: center;
}

.justify-end img{
    justify-self: end;
}


/* Überschriftseinstellung */

.headline {
    display: grid;
    margin: auto;
    padding: 50px;
}

.headline img {
    width: 80%;
    height: auto;
}


/* Bildgroesse */

.width5 img {
    width: 5%;
    height: auto;
}

.width20 img {
    width: 20%;
    height: auto;
}

.width30 img {
    width: 30%;
    height: auto;
}

.width40 img {
    width: 40%;
    height: auto;
}

.width50 img {
    width: 50%;
    height: auto;
}

.width60 img {
    width: 60%;
    height: auto;
}

.width70 img {
    width: 70%;
    height: auto;
}

.width80 img {
    width: 80%;
    height: auto;
}

.width90 img {
    width: 90%;
    height: auto;
}

.width100 img {
    width: 100%;
    height: auto;
}


.verse6 img {
    width: 60%;
}

/* Grid für Position */

.grid {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;

}

.grid-left {
    grid-column-start: 1;
    grid-column-end: 2;
    align-self: end;
    padding: 5em;
}

.grid-middle {
    grid-column-start: 2;
    grid-column-end: 3; 
    align-self: center;
}

.grid-right {
    grid-column-start: 3;
    grid-column-end: 4; 
    align-self: end;
    padding: 5em;
}


/* Animationen */

/* Deckkraft Pfeil */
  .pfeil {
    animation-name: opacity;
    animation-duration: 8s;
    /* animation-delay: 2s; */
    transition-timing-function: ease;
    /* opacity: 0%; */
  }

  @keyframes opacity {
    from {opacity: 0%;}
    to {opacity: 100%;}
  }


/* Farbveränderung */

  .nichts {
    fill: #70379e;
    stroke-width: 0px;
    animation-name: colorchange;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }

  @keyframes colorchange {
    from {fill: #662D91;}
    to {fill: #70379e;}
  }


  /* Smiley rückwärts drehen */

  .rotatebackwards {
    animation: rotatebackwards 13s infinite linear;
    transform-origin: center center;

}

@keyframes rotatebackwards {
    0%      {rotate: 0deg;}
    /* 25%     {rotate: 90deg;}
    50%     {rotate: 180deg;}
    75%     {rotate: 270deg;} */
    100%    {rotate: -360deg;}

  }

