/* style.css – angepasst an das Design von harztische.de */

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 90%;
    text-align: center;
}

.logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.2rem;
    color: #1d1d1d;
    margin-bottom: 1.2rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin: 0 auto;
}

footer {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }
}