.navbar{
    /*background-color: rgba(255,255,255,0.8);*/
    height: 75px;
    position: fixed;
    top: 0;
    transition: top 0.5s ease-in-out;
    width: 100%;
    z-index: 100;
    font-size: 16px;
}

.navbar.nav-up {
    top: -90px;
    display: flex;
}

.navbar .hamburger-container{
    align-self: flex-end;
    display: none;
}
.navbar a{
    color: #222;
    text-decoration: none;
}
.navbar .logo a{
    height: auto;
    margin-bottom: 5px;
    margin-left: 45px;
    align-self: flex-start;
    transition: all 0.2s ease-in-out;
}

.navbar .logo a:hover{
    position: relative;
    left: -10px;
}

.navbar .back-to-home{
    display: inline-block;
    margin-right: 45px;
    transition: all 0.2s ease-in-out;
}

.navbar .back-to-home:hover{
    position: relative;
    opacity: 0.8;
    cursor: pointer;
}


@media(max-width: 580px) {
    .navbar {
        height: 65px;
        justify-content: flex-end;
    }
    .navbar .logo{
        display: none;
    }
    .navbar .back-to-home{
        margin-right: 0;
    }
}
