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

/* colors:  darkblue #071749
            verypink #e6007e*/

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;
}

.align-center {
    display: grid;
}

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


/* Überschriftseinstellung */

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

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


/* Bildgroesse */

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

.width10 img {
    width: 10%;
    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: 20%;
    height: auto;
}

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

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

.height100vh {
    height: 100vh;
    width: auto;
}

/* Animationen */

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

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


/* Farbveränderung */

.rotate {
    animation: rotate 8s infinite linear;
    transform-origin: center center;

}

@keyframes rotate {
    0%      {rotate: 0deg;}
    100%    {rotate: 360deg;}

}


/* Grid für Postion */

.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;
}


