/* Allgemeine Formatierung */

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
}

:root {
    --header-height: 20px;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: black;
    height: var(--header-height);
    padding-left: 15px;
    padding-top: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-variant-caps: all-small-caps;
}

header a {
    color: white;
    text-decoration: none;
}

.circle-button {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 0%;
    cursor: pointer;
}

.circle-button:hover {
    background-color:yellow;

}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10px;
    width: 100vw;
    /* 100% der Viewport-Breite */
}

.container p {
    font-size: 800%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-stretch: expanded;
    text-align: end;
    text-rendering: geometricPrecision;
    margin-right: 2%;
}

.container h1 {
    margin-top: -0.5%;
    font-size: 800%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-stretch: expanded;
    text-align: end;
    font-stretch: wider;
    text-rendering: geometricPrecision;
    color: black
}

.container h2 {
    font-size: 100%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: left;
    color: rgb(177, 170, 170);
    opacity: 80%;
}

.container h3 {
    font-size: small;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: left;
    color: rgb(177, 170, 170);
    margin-bottom: 35px;
    line-height: 20px;
}

.container a {
    color: blanchedalmond;
    text-decoration: none;
}

.audio-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: 0;
    margin: 0;
}

.audio {
    width: 100%;
    height: auto;
    background: black;
    /* Hintergrundfarbe schwarz */
    color: white;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;
}

.image-wrapper {
    width: 60%;
    padding: 0;
    margin: 0;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.image-wrapper img:hover {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    filter: none;
    -webkit-filter: grayscale(0);
}

figcaption {
    color: white;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
}

#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Hintergrundfarbe mit Transparenz für den Effekt */
    display: none;
    /* Anfangs unsichtbar machen */
    z-index: 9999;
    /* Über der normalen Website positionieren */
}