/* Einbindung der lokalen Schriftart dday.ttf */
@font-face {
    font-family: 'DDay';
    src: url('dday.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'DDay', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('bkg.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

#background-video {
    opacity: 30%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Skaliert das Video */
    z-index: 1;
    mix-blend-mode: overlay; /* Mischmodus: ineinander hineinkopierend */
}

.center-content {
    position: relative;
    z-index: 2; /* Setzt die Links über das Video */
    text-align: center;
    width: 45cqmax;
}

.nav-link {
    display: block;
    color: white;
    font-size: 3em;
    text-decoration: none;
    margin: 0px 0;
}

.nav-link:hover {
    color: #ffcc00;
}

img {
    width: 20em;
}

h1 {
    color: aliceblue;
    font-size: 3em;
}

.text {
    text-align: justify;
    font-size: 2.5em;
}