/* Stellt sicher, dass der Hintergrund den gesamten Bildschirm abdeckt */
body, html {
    height: 100vh; /* Viewport-Höhe nutzen */
    margin: 0;
    overflow: hidden; /* Verhindert Scrollen */
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, white, #ffffff 10%, rgba(0, 0, 255, 0.3));
}

/* Styles für die Social-Media-Buttons */
.social-media {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 150px); /* Passt Höhe der Icons an */
}

.social-media a {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 16px;
}

.social-media a:hover {
    background-color: #0056b3;
}

/* Text-Styles */
h1 {
    text-align: center;
    font-size: xx-large;
    margin: 0;
    position: relative;
    top: 35vh;
}

h2 {
    text-align: center;
    font-size: medium;
    margin: 0;
    position: relative;
    top: 90vh;
}

/* Kalender-Styling */
#kalender {
    max-width: 900px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Anpassungen für Mobilgeräte */
@media (max-width: 768px) {
    h1 {
        font-size: large;
        top: 20vh;
        padding: 0 10px;
    }

    h2 {
        font-size: small;
        top: 80vh;
    }

    .social-media {
        flex-direction: column;
        height: auto;
        gap: 10px;
        padding: 20px 0;
        margin-top: 20vh;
    }

    .social-media a {
        font-size: 14px;
        padding: 8px 15px;
        width: 80%;
        text-align: center;
    }

    .kalender {
        max-width: 100%;
        padding: 10px;
    }
}
