/* This file is used to style the layout of the website */
html{
    overflow: hidden;
}
body{
    margin: 0; padding: 0;
}
#app{
    display: flex;
    flex-direction: row;
    margin-top: 0; margin-bottom: 0;
    padding-top: 0; padding-bottom: 0;
}
.navbar{
    width: 5rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: white;
}
.navigator{
    width: calc( 100% - 1rem);
    height: 5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    color: #36d;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.reverse-col-nav{
    background-color: #36d;
}
.navigator:link,.navigator:visited{
    font-weight: normal;
    text-decoration: none;
}
.navigator:hover,.navigator:active{
    font-weight: bold;
    text-decoration: none;
}
.navigator:active{
    text-decoration: underline;
}
.navigator-name{
    margin-top:auto;
}
#logo-pic{
    transform: translateX(-100vw);
    filter: drop-shadow(white calc(100vw + 0.1rem) 0);
}
.nav-img{
    transform: translateX(5rem);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    filter: drop-shadow(#36d -5rem 0);
}
.main-container{
    margin-top: 0; margin-bottom: 0;
    padding-top: 0; padding-bottom: 0;
    width: calc(100% - 5rem);
    height: 100vh;
    background-color: aliceblue;
    display: flex;
    flex-direction: row;
}
.beian{
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 0.8rem;
    z-index: 10;
    color: #36d;

}