* {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: sans-serif;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    display: flex;
    justify-content: center;
}

li {
    float: left;
    background: transparent;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    background: none;
}

li a:hover {
    background: rgba(255, 255, 255, 0.304);
    color: white;
}

@media (max-width: 768px) {
    li a {
        padding: 10px 8px;
        font-size: 14px;
    }
}

.home {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(homeimg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

@media (max-width: 768px) {
    .home {
        background-image: url(homeimg2.png);
    }
}

.logohome {
    text-align: center;
    font-size: 400%;
    top: 20%;
    bottom: 80%;
    position: relative;
    display: flex;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.titelhome {
    text-align: center;
    font-size: 300%;
    top: 20%;
    bottom: 80%;
    position: relative;
    color: white;
}

.titelhome2 {
    text-align: center;
    font-size: 300%;
    top: 20%;
    bottom: 80%;
    position: relative;
    color: white;
}

.texthome {
    text-align: center;
    font-size: 200%;
    top: 20%;
    bottom: 80%;
    position: relative;
    color: white;
}

p {
    background: transparent;
}

::-webkit-scrollbar {
    width: 15px;
    background: rgba(255, 255, 255, 0.318);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(rgb(255, 130, 151), rgb(142, 66, 255));
    border-radius: 20px;
}

.funktion {
    width: 100%;
    min-height: 100vh; /* Mindesthöhe, um den gesamten Text zu zeigen */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    padding: 20px;
    box-sizing: border-box;
}

.funktion1, .funktion2, .funktion3 {
    flex: 1 1 calc(30% - 20px);
    margin: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .funktion1, .funktion2, .funktion3 {
        flex: 1 1 calc(80% - 20px);
    }
}

.angebote {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url(angeboteimg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.karteangebot {
    width: 300px;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}

.titelangebot {
    text-align: center;
    font-size: 300%;
    background: transparent;
}

.vorteileangebot {
    margin: 10px;
    color: white;
}

.linkangebote {
    padding: 10px;
    margin: 20px 0;
    color: white;
    background: linear-gradient(to right, rgb(255, 130, 151), rgb(142, 66, 255));
    border-radius: 2px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.5s;
}

.linkangebote:hover {
    opacity: 0.7;
}

.new-price {
    color: white;
    font-weight: bold;
    background: transparent;
}

.buchen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.containerbuchen {
    width: 300px;
    height: 500px;
    background: white;
    border-radius: 10px;
    box-shadow: -10px 0 30px rgba(255, 130, 151, 0.7), 10px 0 30px rgba(142, 66, 255, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}

.titelbuchen {
    text-align: center;
    font-size: 200%;
    margin-top: 20px;
}

.buchenlink {
    display: block;
    padding: 10px;
    color: white;
    background: linear-gradient(to right, rgb(255, 130, 151), rgb(142, 66, 255));
    border-radius: 2px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.5s;
}

.buchenlink:hover {
    opacity: 0.7;
}

.textbuchen {
    text-align: center;
    font-size: 100%;
    margin: 20px;
    background: transparent;
}
