*{
    margin: 0;
    padding: 0;
    font-family: "Dosis", sans-serif;
    font-weight: 400;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

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

b {
    font-weight: 600;
}

.navbar > ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar > ul > li {
    height: 50px; /* ändern */
    margin: 1.5%;
}

.navbar > ul > li.l {
    height: 50px; /* ändern */
    margin: 2% 65vw 2% 2%;
}

.navbar > ul > li > a {
    height: 100%;
    display: flex;
    align-items: center;
    color: black;
    overflow: hidden;
}

.navbar > ul > li > a:hover {
    background-color: #9fc1d7;
}

.navbar > ul.sidebarDesktop {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px; /* ändern */
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.navbar > ul.sidebarMobile {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px; /* ändern */
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.navbar > ul.sidebar > li {
    width: 100%;
}

.navbar > ul.sidebar > li > a {
    width: 100%;
}

@media only screen and (max-width: 1000px) {
    .hideOnMobile {
        display: none;
    }

    a {
        font-size: 5vw;
        font-weight: 500;
    }
}

@media only screen and (min-width: 1000px) {
    .hideOnDesktop {
        display: none;
    }


    a {
        font-size: 2vw;
        font-weight: 500;
    }
}

.section {
    width: 100vw;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 2rem;
    max-width: 100%;
}

.section > h1 {
    margin-left: 10%;
}

.section > h3 {
    margin-left: 7.5%;
}

.linettl {
    position: relative;
    display: inline-block;
}

.linettl::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50%; /* oder 60px, je nach Geschmack */
    height: 3px;
    background-color: #26B1FF;
    border-radius: 2px;
    margin-bottom: 1%;
}

.icon {
    height: 100%;
    aspect-ratio: 4/4;
}