/*Basic Stuff for all web pages starts here*/
body{
    background-color: #403e3e;
}

.nav {
    overflow: hidden;
}

.nav a {
    float: right;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-family: "Comic Sans MS", serif;
}

.nav a:hover {
    color: cyan;
}

.nav a.active {
    background-color: grey;
    color: orange;
}

/*Basic Stuff for all web pages ends here*/
