/* Top navigation bar, used for desktop computers and devices with big screens */

* {
    
}


#topNavBar {
    display: inline-flex;
    flex-direction: row;
    font-size: 1.2rem;
    align-items: center;
    text-align: center;
    padding: 10px;
    top: 0%;
    position: fixed;
    width: 100%;
    margin: auto;
    justify-content:center;
    padding-right: 100px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.5);
}


#topNavBar > img {
    width: 100px;
    height: 100px;
}



#topNavBar > ul {
    margin: 0px;
    padding: 0px;
    display: inline-flex;
    align-items: center;
}


#topNavBar > ul > li {
    list-style-type: none;
    display: inline-flex;
    align-items: center;
    width: 150px;
    line-height: 50px;
}


#topNavBar > ul > li > a {
    text-decoration: none;
    padding: 0px;
    display: inline-block;
    text-align: center;
    align-items: center;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 5px;
    margin-left: 5px;
    background: rgba(20, 30, 50, 0.5);
    font-size: 1.4rem;
    font-weight: bold;
    width: 100%;
    border-radius: 50px;
    color: var(--nav-text-color);
}


#topNavBar > ul > li a:hover {
    background-color: var(--nav-hover);
    cursor: pointer;
}


#topNavBar #blogName {
    /*background: rgba(20, 50, 75, 1);*/
    font-size: 1.6rem;
    /*color: rgb(193, 0, 164);*/
    font-weight: bold;
    border-radius: 20px;
    text-align: center;
    align-items: center;
    text-decoration: none;
    margin-bottom: 0px;
}


#topNavBar #blogName:hover {
    /*background: teal;*/
    color: rgb(193, 0, 164);
}






/*-------------------------------------------------------------------------------------------------*/
/* Media screens */
/*-------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {

    #topNavBar {
        visibility: hidden;
    }
}


