/*navbar*/
.topNav {
    overflow: hidden;
    background-color: black;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

.topNav a:first-child{
    margin-left: 20%;
} 

.topNav a{
    float: left;
    display: block;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: auto 0;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
}

.topNav a:hover{
    background-color: rgb(57, 93, 255);
    color: white;
}

.topNav .icon{
    display: none;
}

.topNav a.active{
    background-color: blue;
    color: white;
}

/*media query to make navbar text vanish*/
@media screen and (max-width: 768px){
    .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;
    }
}

/* end navigation */
h1{
    font-size: 2.5rem;
    margin-bottom: 30px;
}