* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f2f2f2; /* Helleres Grau */
    text-align: center;
}

.container {
    padding: 20px;
    max-width: 1000px;
}

h1 {
    font-size: 4.5vw; /* Große Schrift für Desktop */
    font-weight: 400;
    line-height: 1.2;
    color: #333; /* Dunkles Grau */
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 6vw; /* Größere Schrift für Tablets */
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 8vw;
        line-height: 1.3;
    }
    
    /* Früherer Umbruch */
    h1::after {
        content: '';
        display: block;
    }
}
