body {
/* Seitenübergang Einblendung */
 animation: einblenden 3s;
 animation-delay: 1s;
 -moz-animation: einblenden 3s;
 /* Für Firefox */
 -webkit-animation: einblenden 3s;
 /* Für Safari und Chrome */
 -o-animation: einblenden 3s;
 /* Für Opera */
}

/* Keyframes für Seitenübergang */

@keyframes einblenden {
 from {
     opacity: 0.2;
 }

 to {
     opacity: 1;
 }
}

@-moz-keyframes einblenden {

 /* Für Firefox */
 from {
     opacity: 0.2;
 }

 to {
     opacity: 1;
 }
}

@-webkit-keyframes einblenden {

 /* Für Safari und Chrome */
 from {
     opacity: 0.2;
 }

 to {
     opacity: 1;
 }
}

@-o-keyframes einblenden {

 /* Für Opera */
 from {
     opacity: 0.2;
 }

 to {
     opacity: 1;
 }
}

body {
    background-color: #454545;
    font-family: sans-serif;
    font-size: 1em;
    line-height: 125%;

}

h1,
h2 {
    color: white;
    text-align: center;
    line-height: 1.3em;
}



a:link,
a:visited {
    color: white;
 }

a:hover {
    color: #454545;
    background-color: white;
}

.bilder {
    max-width: 90vw;
    /* max-height: 100vh; */
    margin: auto;
}

img {
    max-width: 80vw;
    max-height: 100vh;
    margin: auto;
    display: block;
    margin-bottom: 5vh;
    border-radius: 10px;
}

.video {
    max-width: 80vw;
    margin: auto;
    border-radius: 10px;
     }

/* .video a:link,
a:visited {
    color: transparent;
}

.video a:hover {
    color: transparent;
    background-color: transparent;
} */

video {
    border-radius: 25px;
}