/*
    Nav classes
*/

.border-layout{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#logo > a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .2s all ease-in-out;
    -o-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#logo > a:hover #logo-image{
    -webkit-box-shadow: 0 0 6px var(--font-color);
    box-shadow: 0 0 6px var(--font-color);
}

#logo > a:hover img{
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

#logo-image{
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 2%;
    -webkit-box-shadow: 0 0 2px var(--font-color);
    box-shadow: 0 0 2px var(--font-color);
    -webkit-transition: .2s all ease-in-out;
    -o-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#logo-image > img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: .2s all ease-in-out;
    -o-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#options{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#options label{
    margin: 6px 0;
}

/*
    Responsiveness
*/

@media(max-width: 948px){
    #logo-image{
        width: 65px;
        height: 65px;
        border-radius: 4%;
    }

    #options label{
        margin: 4px 0;
    }
}

@media(max-width: 512px){
    #logo-image{
        width: 50px;
        height: 50px;
        border-radius: 5%;
    }
}