body {
    margin: 0;
    font-family: "Lato", sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3880ff;
    box-shadow: 0px 1px 5px #757575;
}

.menu-button {
    display: none;
}

#menu-list a {
    margin-left: 8px;
    text-decoration: none;
    color: #fff;
}

#menu-list li {
    float: left;
    color: #fff;
    padding-right: 24px;
    list-style-type: none;
    font-size: 16px;
}

.menu-list {
    margin-block-start: 0;
    margin: 0;
}

.header {
    display: none;
}

@media screen and (max-width: 500px) {

    .navbar {
        padding: 16px;
        flex-direction: row-reverse;
    }

    .menu-button {
        color: #fff;
        display: block;
    }

    .header {
        /* background: #3880ff; */
        display: block;
        width: auto;
        padding: 14.7px;
        box-shadow: 0px 1px 5px #757575;
    }

    #menu-list {
        display: none;
        float: none !important;
        margin: 0;
        padding: 0;
    }

    #menu-list i {
        font-size: 21px;
        float: left;
        color: #757575;
        text-align: center;
    }

    #menu-list li {
        float: none;
        padding-right: unset;
        list-style-type: none;
        font-size: 16px;
        padding-top: 16px;
        margin-left: 16px
    }

    #menu-list li:last-of-type {
        margin-bottom: 16px;
    }

    #menu-list a {
        /* padding: 16px 0; */
        color: rgb(30, 30, 30);
        margin-left: 56px;
        padding-bottom: 16px;
        border-bottom: solid rgb(235, 235, 235) 1.5px;
        display: list-item;
    }

    #open-menu-button,
    #close-menu-button {
        position: relative;
    }

    #close-menu-button {
        display: none;
    }

}