body{
    font-family: 'Lato', sans-serif;
    background-color: #e9e9ff;
    background-image: linear-gradient(102deg, #e9e9ff 0%, #ffbebe 98%);
    
}

.header {
    border-bottom: 5px solid red;
    background-color: #e9e9ff;
    background-image: linear-gradient(5deg, #e9e9ff 0%, #f79898 98%);

}

.header .logo, .header .logo-mobile {
    /* max-width: 5rem; */
    /* margin-right: 1rem; */
    -webkit-filter: drop-shadow(1px 1px 1px rgb(255, 255, 255));
    filter: drop-shadow(1px 1px 1px rgb(255, 255, 255));
}

/* navbar styles */
/* .navbar-nav>li>a {
    font-size: 13px;
} */

.navbar-nav li a:hover {
    /* background-color: rgba(122, 121, 121, 0.562); */
    /* border-radius: 15px; */
    border-bottom: 1px solid white;
}

@media only screen and (max-device-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
}

/* Go to Top button */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 14px;
    border: none;
    outline: none;
    background-color: rgb(173, 173, 173);
    color: rgb(0, 0, 0);
    cursor: pointer;
    padding: 15px;
    border-radius: 50px;
}

#myBtn:hover {
    background-color: #555;
}