/* topnav bullshit below */
.topnav {
    overflow: hidden;
    background-color: saddlebrown;
    margin-bottom: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
}

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

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

        .topnav a.active {
            background-color: darkgreen;
            color: white;
        }

    .topnav .icon {
        display: none;
    }

@media screen and (max-width: 923px) {
    .topnav a:not(:first-child) {
        display: none;
    }

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

@media screen and (max-width: 923px) {
    .topnav.responsive {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

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

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