html {
    font-size:22px;
}

a {
    text-decoration: none;
    color: #001a8e;
}

a:active, a:hover {
    text-decoration: underline;
    color: #ff6735;
}

.navbar {
    display: none;
}

.member img {
    border: 2px solid #001a8e;
    border-radius: .25rem;
    margin: 0 1rem .25rem 0;
}
.member img:hover {
    border-color: #ff6735;
}
.member {
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 767px) {
.member {
    flex-direction: column;
}
}

.logo {
    display: block;
    max-width: 100%;
    margin: auto;
}

h2, h3, h4, h5, h6 {
    color: #ff6735;
    margin-top: 1.5rem;
}

/*
a, a:link, a:hover, a:visited {
    color: #001a8e;
}*/

.menu {
    display: flex;
    width: 80%;
    margin: auto;
    justify-content: space-evenly;
}

.menu a {
    background-color: #ff6735;
    border: #940000 .1em solid;
    border-radius: .25rem;
    padding: .25rem;
    margin: .25rem;
    color: white;
}
@media only screen and (max-width: 767px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }
}

.footer {
    display: flex;
    justify-content: space-around;
}
.footer img {
    margin: .25rem;
}
@media only screen and (max-width: 767px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }
}

body:before {
    content: none;
}

.highlight {
    padding: .75rem 1.25rem;
    border: 1px solid #ff6735;
    border-radius: 4px;
    background-color: #ff673560;
}
