@charset "UTF-8";
/* CSS Document */
/* Set the black background and white text color */
body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 7rem;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container styling */
.container {
    text-align: center;
    width: 100%; 
    padding: 0 50px; 
    box-sizing: border-box;
}
.hbt {
    margin-top: -200px;
}
.tx{
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem; 
    color: white; 
    text-decoration: none; 
}

/* Link styling */
a {
    font-size: 2.4rem;
    color: white; 
    text-decoration: none; 
    font-weight: bold;
}

a:hover {
    color: white; 
    text-decoration: underline; 
}
a.impressum {
    font-size: 12px; 
    color: white; 
    text-decoration: none; 
}

a.impressum:visited {
    color: white; 
}

a.impressum:hover {
    color: white; 
    text-decoration: none; 
}
/* Styling für größere Geräte */
@media (min-width: 768px) {
    body {font-size: 7rem;  }
    a {
        font-size: 6vw; 
    }
}

@media (min-width: 1024px) {
    body {font-size: 10rem; }
    a {
        font-size: 8vw; 
    }
}