body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url('img/bg1.jpg'); /* Hier das Bild deiner Wahl einfügen */
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.content {
    max-width: 700px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    padding: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Versteckt das h1 für User, aber nicht für Suchmaschinen oder Screenreader */
.visually-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Styling für das Logo */
.logo {
    max-width: 100%;
    max-height: 200px;
    display: block;
    margin: 0 auto 20px;
}

/* Buttons */
.button-container {
    margin-top: 20px;
}

.btn {
    display: block;
    margin: 10px auto;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: rgba(255, 0, 0, 1);
}

/* Responsives Design */
@media (max-width: 768px) {
    .content {
        max-width: 90%;
    }
    
    .logo {
        max-height: 150px;
    }
    
    .btn {
        width: 80%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 30px;
    }
    
    .logo {
        max-height: 120px;
    }

    .btn {
        font-size: 16px;
        padding: 12px 20px;
    }
}
