
body {
    margin: 0;
    padding: 0;
}



/*-----Navigation-----*/
.topNav {
    overflow: hidden;
    background-color: rgb(62, 49, 80);
    width: 100%;
    text-align: center;
    font-family: "Kalam", cursive;
    font-weight: 450;
    font-style: normal;
}

/*.topnav a:first-child {
    margin-left: 30%;
}*/

.topNav a{
    float: left;
    display: block;
    color: rgb(191, 168, 216);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 15px;
}

.topNav a:hover{
    background-color:rgb(191, 168, 216);
    color:rgb(44, 29, 65);
}

.topNav .icon{
 display: none;
}

.topNav a.active{
    background-color: rgb(55, 32, 78);
    color: rgb(227, 220, 238);
}

/*Media Queary to make Nav-Bar Text Dissapear eccept for first element in the nav bar */
@media screen and (max-width: 825px) {
    .topNav a:not(:first-child) {
        display: none;
    }
    .topNav a.icon {
        margin-left: 0;
        float: right;
        display: block;
    }
}

.topnav.responsive {
    position: relative;
}

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

.topNav.responsive a{
    float: none;
    display: block;
    text-align: left;
}
/*-----Nav End-----*/