.top-menu{
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 50px;
    background-color: #d9534f;
    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{
    position: relative;
    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;
    background-color: white;
    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);
    cursor: pointer;
}

.top-menu .right-side #signInButton{
    color: white;
    cursor: pointer;
}

#accountOptions{
    position: absolute;
    right: 20px;
    top: 50px;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 5px;
    padding: 5px 0px;
    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);
}
#accountOptions .accountOption{
    padding: 5px 10px;
    text-decoration: none;
}
#accountOptions .accountOption:hover{
    background-color: #c3c3c3;
}