html {
    scroll-behavior: smooth;
}

header{
    width: 100vw;
    height: 6rem;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: .5rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
}

header a {
    color: black;
}

.link-container{
    width: 40%;
    display: flex !important;
}

.link-container a{
    margin-right: 1.5rem;
}

header #logo{
    height: 4rem;
    width: auto;
    filter: drop-shadow(1px 5px 6px rgba(0, 0, 0, 0.5));
}

#verbindung{
    width: 198px;
    height: 28px;
    background: var(--blue);
    border-radius: 15px;
    color:  white ;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-container:nth-child(3){
    display: flex;
    justify-content: flex-end;
}

.mobile{
    display: none;
}

.menu-icon{
    height: 3rem;
}

#mobile-menu{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: white;
    z-index: 5;
}

.cancel{
    width: 2rem;
    height: 2rem;
    padding: 0;
    border-radius: 50%;
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: center; 
    font-size: 1.5rem;  
    margin-bottom: 2rem; 
}

#mobile-link-container{
    display: flex;
    flex-direction: column;
    margin-bottom: 10rem;
}

#mobile-link-container a{
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

@media only screen and (max-width: 85rem){
    header .width-container{
        justify-content: space-around;
        display: flex;
        flex-direction: row;
    }

    .mobile{
        display: flex;
    }

    header a{
        color: black;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.6);

    }
}

header .desktop{
    display: none !important;
}

@media only screen and (min-width: 85rem){
    header .desktop{
        display: flex !important; 
    }

    .mobile{
        display: none !important;
    }

    header a{
        font-family: Inter;


    }

    header #logo{
        height: 6rem;
    }
}