.top-menu{
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 50px;
    background-color: #cc2020;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    z-index: 1;
}

.top-menu.dark{
    background-color: #2e3138;
}

.top-menu .left-side{
    display: flex;
    width: 33.33%;
    justify-content: flex-start;
    padding: 5px 10px;
}

.top-menu .left-side .logo{
    height: 40px;
    width: 40px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.top-menu .middle-menu{
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-menu .middle-menu .site-title{
    font-size: 2em;
    font-weight: bold;
    color: white;
}

.top-menu .right-side{
    display: flex;
    width: 33.33%;
    justify-content: flex-end;
    padding: 5px 10px;
}

.top-menu .right-side .profile-link{
    height: 40px;
    width: 40px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 50%;
    overflow: hidden;
}