@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: url('bild.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    text-align: center;
}

.logo {
    width: 520px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    margin-bottom: -10px; /* enger Abstand */
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.3));
}

h1 {
    font-size: 2.3em;
    margin: 10px 0 10px 0;
    color: #000;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333;
}

.button,
.button:visited,
button.button {
    display: inline-block;
    background-color: #007BFF; /* oder deine Wunschfarbe */
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

    .button:hover,
    button.button:hover {
        background-color: #0056b3;
    }

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    height: 650px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

.modal .close {
    color: #aaa;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
