html { font-size: 125%; } 

@media (max-resolution: 300dpi) {
    html {
        font-size: 62.5%;
    }
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    word-wrap: break-word;
}

.app-header {
    width: 100%;
    font-size: 3rem;
    background-color: #1f6650;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 0.5rem 1rem 1rem;
    border-bottom: 1px solid;
    align-items: start;
}

.app-title {
    font-size: 3.25rem;
    padding: 0rem 2rem 1rem 2.5rem;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu-top {
    display: flex;
    flex-direction: row;
}

.menu-closed {
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: height 0.5s, opacity 0.5s;
}

.menu-open {
    visibility: visible; 
    opacity: 1;
    font-size: 2.3rem;
    margin: 0;
    padding: 0;
    height: 4.5rem;
    transition: height 0.5s, opacity 0.5s;
}

.menu-open a {
    margin-right: 2rem;
}

.menu-links {
    margin-top: 0.75rem;
}

.menu-open li:not(:last-child) {
    border-bottom: solid 1px;
}

.menu-open a:link,
.menu-open a:visited {
    text-decoration: none;
    color: inherit;
}

.menu-open a:hover {
    color: #ffdc34;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-toggle-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    background-color:  white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    -webkit-tap-highlight-color: transparent;  
}

.menu-toggle-bar {
    width: 4rem;
    height: 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    background-color:  black;
    display: inline-block;
}
  
.menu-toggle-bar:last-child {
    margin-bottom: 0px;
}

.menu-text {
    font-size: 1.75rem;
    padding: 0.5rem;
}

.page {
    margin: 3rem;
}

.homepage-header {
    font-size: 2.5rem;
    border: solid 1px;
    background-color: #6f9a8d;
    padding: 2rem; 
    border-radius: 1rem;
}

.news {
    padding: 2rem;
    font-size: 2rem;
}

.news-header {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.news-item {
    margin: 1rem;
}

.contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contacts-us {
    flex-grow: 0;
    border-radius: 1rem 1rem 1rem 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    padding: 1rem;
    background-color: #eafbea;
    border: 1px solid;
    text-align: center;
    min-width: 300px;
}

.contacts-lists {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.contacts-header {
    border-radius: 1rem 1rem 0 0;
    font-size: 2.5rem;
    font-weight: 700;
    padding: 1rem;
    background-color: #6f9a8d;
    border-bottom: 1px solid;
}

.board-members {
    background-color: #eafbea;
    margin: 2rem;
    border: solid 1px;
    border-radius: 1rem;
}

.board-member {
    font-size: 2rem;
    padding-bottom: 1rem;
}

.board-member-item {
    padding: 0 1rem 0 1rem;
}

.board-member-title {
    font-weight: 700;
    padding-bottom: 1rem;
}

.other-contacts {
    background-color: #eafbea;
    border: solid 1px;
    border-radius: 1rem;
    font-size: 2rem;
    margin: 2rem;
}

.other-contacts-body, .board-members-body {
    padding: 1.5rem;
}

.other-contact {
    padding-bottom: 1rem;
}

.other-contact-name {
    display: inline-block;
    font-weight: 700;
}

.events-header {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.event {
    background-color: #eafbea;
    margin: 2rem 0 2rem 0;
    padding: 1.5rem;
    border: solid 1px;
    border-radius: 1rem;
    font-size: 2rem;
}

.event-date {
    margin-right: 1rem;
}

.event-emphasis {
   margin-top: 1rem;
   font-weight: bold;
}

.archive-header {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.archive-set {
    background-color: #eafbea;
    margin: 2rem 0 2rem 0;
    padding: 1.5rem;
    border: solid 1px;
    border-radius: 1rem;
    font-size: 2rem;
}

.archive-set-year {
    margin-right: 2rem;
}

.archive-link {
    margin-right: 2rem;
}

.resident-info-section-header {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.resident-info-section {
    font-size: 2rem;
}

.signup {
    margin-left: 1rem;
    margin-right: 1rem;
}