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

/* Body und Container */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
    padding: 30px;
}

/* Titel */
h1 {
    font-family: 'Roboto', sans-serif;
    color: #2d2d2d;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Text */
p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888888;
}

.footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}
