/*Title Style*/
#title_text {
    color: #333;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, .75) 0%, rgba(255, 255, 255, .75) 80%, rgba(255, 255, 255, 0) 100%);
    font-size: 2vw;
    margin: 0;
    padding: 0;
}

/* Navigation Image*/
.nav_img {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, .75) 0%, rgba(255, 255, 255, .75) 90%, rgba(112, 111, 111, 0) 100%);
    color: black;
    width: 15%;
    margin: 0;
    padding: 0;
    float: left;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    max-width: 190px;
    min-width: 100px;
}

.nav_img img {
    padding: 0;
    margin: 0;
    width: 100%;
}

/* If the screen size is 600px wide or less */
@media screen and (max-width: 800px) {
    #title_text {
        font-size: 20px;
    }
}

@media screen and (min-width: 801px) {
    #title_text {
        font-size: 2vw;
    }
}

.topInnerHolder {
    overflow: hidden;
}

/*Navigation Box Style*/
.topnav {
    overflow: hidden;
    background-color: #333;
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav .icon {
    display: none;
}

/* When you are on the page corresponding to the menu item - change its background color */
.nav_active {
    background-color: #82c0ff;
    color: white;
}


/*Below is for the drop-down display*/
@media screen and (max-width: 800px) {
    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 800px) {
    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}