header{
    width:100%;
    position:absolute;
}
nav{
    width:80%;
    display:flex;
    font-weight: 200;
    flex-wrap: nowrap;
    background:transparent;
    align-items: center;
    justify-content: space-between;
    margin:auto;
    user-select: none;
    padding:1.7rem 0px;
    color:white;
}

nav .nav-elements{
    color:white;
    border-style:solid;
    border-color: transparent;
    padding-bottom:1rem;
    border-width:0px 0px 0.2rem;
    display:flex;
    align-items:center;
    gap:5px;
}

nav .nav-elements a {
    color:white;
    font-size: 1.4rem;
    font-weight: 400;
}

nav .nav-right{
    display:flex;
}

nav .nav-right a{
    margin-right: 2rem;
    font-size: 1.8rem;
    font-weight: 200;
    padding:0.8rem;
}

.user-icon{
    border: 1px solid rgb(207, 207, 207);
    height: 3.2rem;
    width: 3.2rem;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: rgb(239, 79, 95);
    display: none;
}

@media(max-width:800px){
    nav{
        justify-content: flex-end;
        padding:0 1rem;
        width:100%;
        height:5.6rem;
    }
    .user-icon {
        display:flex;
    }
    .nav-left{
        display:none!important;
    }
    .nav-right{
        display:none!important;
    }
}

