body {
    min-height: 100vh;
}

#back-btn {
    display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for thefirst one ("Home"). Show the link that contains should open and close the topnav(.icon) */
@media screen and (max-width: 640px) {
    .topnav > a:not(:nth-child(2)) {
        display: none;
    }

    #back-btn {
        display: block;
    }
}

/* The "responsive" class is added to the topnav with JavaScript when the userclicks on the icon. This class makes the topnav look good on small screens(display the links vertically instead of horizontally) */
@media screen and (max-width: 640px) {
    /* .topnav.responsive {
        position: relative;
    } */

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

    .topnav.responsive a.icon {
        /* position: absolute;
        right: 0;
        top: 0; */
        float: right;
    }
}

#hamburger>div {
    width: 30px;
    height: 4px;
    background-color: #333333;
    margin: 5px 0;
}
