.sticky-nav{
    position: fixed;
    width: 100%;
    height: 10vh;
    top: 0;
    z-index: 1;
    transition: height 0.3s ease-in-out;
}

.sticky-nav-hide{
    position: fixed;
    width: 100%;
    height: 0;
    top: 0;
    z-index: 1;
    transition: height 0.3s ease-in-out;
    overflow: hidden;
}


.nav-left-item{
    padding-left: 20px;
}

.nav-right-item{
    padding-right: 20px;
}

.nav-item{
    font-size: 30px;
    transition: opacity 0.5s ease-in-out
}

.nav-item-hide{
    opacity: 0;
}

header{
    background-color: transparent;
}

a{
    color: unset;
}

body{
    background-color: rgb(245,245,245);
}
