body {
    margin: 0;
    padding: 0;
    background-image: url('backround.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Roboto', sans-serif;
    color: whitesmoke;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.content {
    position: relative;
    top: 50vh; /* Höhe angepasst, damit der Inhalt früher erscheint */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7); /* Hintergrundfarbe */
}

h1 {
    font-size: 6em; /* Größe der Hauptüberschrift angepasst */
    font-family: 'Montserrat', sans-serif;
}

h2 {
    font-size: 2em; /* Größe der zweiten Überschrift angepasst */
    font-family: 'Montserrat', sans-serif;
}

.buttons {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.logo {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1; /* Sicherstellen, dass das Logo über dem Hintergrundbild liegt */
}