body {
    font-family: Arial;
}

.nav {
    overflow: hidden;
}

.nav a {
    align-self: center;
    justify-self: center;
    position: relative;
    font-size: 1em;
    text-align: center;
    border: solid 2px white;
    padding: 1em 1em;
    text-decoration: none;
}

.mobile .nav-item a {
    padding: 15px;
    width: 100%;
}

#responsivenav {
	height: 500px;
	overflow-y: scroll;
}

.mobile .nav-item {
    width: 75%;
    margin: 10px auto 10px auto;
    padding: 0;
    justify-content: center;
    display: flex !important;
}

.navbar-toggler {
    box-shadow: none !important;
}

.navbar-brand {
    float: left;
    margin-top: 12px;
}

.navbar-toggler {
    margin-top: 0px;
    margin-bottom: 0px;
}

.nav-icon {
    float: left;
    overflow: hidden;
}

.nav-icon .nav-btn {
    font-size: 1em;
    border: none;
    outline: none;
    color: white;
    padding: 1em 1em;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.nav-icon:hover #navicon {
    transform: rotate(90deg);
    transition: 250ms;
}

.nav-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 10em;
    z-index: 1;
}

.nav-content a {
    float: none;
    color: #081A35;
    padding: 0.75em 1em;
    text-decoration: none;
    display: block;
    text-align: left;
}

.nav-content a:hover {
    background-color: #ddd;
}

.nav-icon:hover .nav-content {
    display: block;
}