/* Sicherstellen, dass das Body-Element die volle Höhe und Breite einnimmt */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Hintergrundbild und Video-Container */
.background-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('silberwolf.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Footer-Styling */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 5px 0;
    color: #fff;
    font-family: Arial, sans-serif;
}

footer p, footer a {
    color: #fff;
    font-family: Arial, sans-serif;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
