body {
    margin: 0;
    padding: 0;
    font-family: "Mulish", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

.header {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/wallpaper.jpg");
    background-size: cover;
    background-position: center;
}

.navigation {
    width: 100%;
    height:auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 5%;
}

.navigation a {
    padding: 20px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.main_title {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 900;
}

.sec_title {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 600;
}

.header_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5%;
}

.content_title {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5%;
    padding-bottom: 2%;
    color: #000000;
    font-size: 2rem;
    font-weight: bold;
}

.content_history {
    width: 1000px;
    height: auto;
    text-align: justify;
}

.content_clubs {
    width: 1000px;
    height: auto;
}

.club {
    margin-top: 2rem;
}

.content_restaurants {
    width: 1000px;
    height: auto;
    display: flex;
    justify-content: center; /* Zentriert die Elemente */
    align-items: center;
    gap: 20px; /* Fügt gleichmäßigen Abstand zwischen den Elementen hinzu */
}

.club_name {
    font-weight: bold;
}

.restaurant {
    width: 30%;
    text-align: center; /* Zentriert den Inhalt innerhalb des Elements */
}

.restaurant_name {
    font-weight: bold;
    text-align: center;
}

.club_description {
    text-align: justify;
}

.links {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1%;
}

.impressum_title {
    font-weight: bold;
}

.links img {
    width: 2rem;
    height: 2rem;
    margin: 0 10px;
}

.footer {
    padding: 5%;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #000000;
    color: white;
}

@media (max-width: 1200px) {
    .content_history {
        width: 80%;
        height: auto;
    }

    .content_clubs {
        width: 80%;
        height: auto;
    }

    .content_restaurants {
        width: 80%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .content_history {
        width: 90%;
        height: auto;
    }
    .content_clubs {
        width: 90%;
        height: auto;
    }
    .content_restaurants {
        width: 90%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .navigation a {
        padding: 20px;
        color: #ffffff;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .main_title {
        font-size: 2rem;
        color: #ffffff;
        font-weight: 900;
    }
    
    .sec_title {
        font-size: 1rem;
        color: #ffffff;
        font-weight: 600;
    }

    .content_title {
        font-size: 1.5rem;
    }

    .content_history {
        width: 95%;
        height: auto;
    }

    .content_clubs {
        width: 95%;
        height: auto;
    }

    .content_restaurants {
        width: 95%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .restaurant {
        margin: 0;
        padding: 0;
        width: 70%;
        text-align: center; /* Zentriert den Inhalt innerhalb des Elements */
    }
}