body { 
    margin: 0;
    background-color: #0a0a0a;
    color: white;
    font-family: 'Roboto', sans-serif;
}

/* ZENTRIERUNG DES GANZEN INHALTS */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 10px;
}

/* TITEL */
.titel {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: clamp(32px, 6vw, 80px);
    margin: 0;
    color: aliceblue;
}

/* QUOTE */
.qoute {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 3.5vw, 32px);
    margin: 0;
    color: aliceblue;
}

/* STRICH */
.strich {
    color: rgb(99, 99, 99);
    margin: 0;
}

/* DESCRIPTION */
.titeldescription {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(14px, 3vw, 18px);
    color: rgb(230, 230, 230);
    max-width: 600px;
}

/* FOOTER */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #0a0a0a;
    padding: 10px;
}

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

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

/* IMPRESSUM */
.impressum {
    max-width: 800px;
    margin: 100px auto;
    padding: 20px;
    color: aliceblue;
    font-family: 'Playfair Display', sans-serif;
    text-align: left;
}

/* MOBILE OPTIMIERUNG */
@media (max-width: 600px) {
    .container {
        padding: 40px 15px;
    }

    footer {
        font-size: 14px;
    }
}