
@import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap');

body {
    background: url('images/slide_1.jpg') no-repeat center center fixed;
    background-size: cover;
    background-color: #000000;
    color: #000000;
    font-family: 'Jersey 10', sans-serif;
    text-align: left;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    width: 90%;
    margin: 0px auto;
    padding: 20px;
    background-color: transparent;
    border-radius: 0px;
    
}

.logo-container {
    margin-top: 50px; /* Variable Höhe: 5% der Viewport-Höhe */
    text-align: left; /* Ändere zu 'left', 'right' oder 'center' */
    margin-bottom: 20px;
}

.impressum-logo {
    max-width: 150px; /* Größe des Logos anpassen */
    height: auto;
}

.impressum-headline {
    font-family:'Jersey 10', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;    
    text-align: left;
}

.impressum-subheadline {
    font-family:'Jersey 10', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 30px;
}

.impressum-text {
    font-family:'Jersey 10', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}


.startbutton {
    background-color: #000000;
    font-family:'Jersey 10', sans-serif;
    color: white;
    padding: 5px 20px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    margin-top: 10px;
}

.startbutton:hover {
    background-color: #ffffff; /* Ändere die Farbe bei Hover */
    color: black;
}

.impressum-footer {
    font-family:'Jersey 10', sans-serif;
    letter-spacing: 3px;
    font-size: 14px;
    position: fixed;
    display: grid;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    grid-template-columns: repeat(3, auto); /* Standard: 3 Spalten */
    justify-content: center; 
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3); /* Optional: Schatten für besseren Kontrast */
}

.impressum-footer a {
    font-family:'Jersey 10', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 14px;
/*     font-weight: bold; */
    transition: color 0.3s ease;
}

.impressum-footer a:hover {
    color: #ffcc00; /* Ändere Farbe bei Hover (z. B. Gelb) */
}


