html, body {
    margin: 0;
    padding: 0 2rem;
    font-family: 'Times New Roman', Times, serif;
    color: black;
    background-color: #F5F5F8;
    cursor: default;
    user-select: none;
}

a, a:link, a:visited {
    color: black;
    text-decoration: none;
}

.divider {
    width: 1px;
    background-color: lightgray;
    height: auto;
}

header {
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 0.5px solid lightgray;
    font-size: 1.4rem;
}

#header_logo {
    font-weight: bold;
    cursor: pointer;
}

#header_menu {
    cursor: pointer;
    
}

nav {
    display: none;
    border-bottom: 0.5px solid lightgray;
}

.nav_link {
    text-align: center;
    padding: 0.75rem 0;
}

footer {
    padding: 1.5rem 0 2.5rem 0;
    border-top: 0.5px solid lightgray;
}

#footer_labels {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1rem 0;
    font-weight: bold;
}

.footer_container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    padding: 1rem 0;
}

.footer_navigation {
    text-align: left;
}

.footer_resources {
    text-align: center;
}

.footer_contact {
    text-align: right;
}

.footer_link a:hover {
    text-decoration: underline;
}

#footer_copyright {
    margin-top: 1rem;
    text-align: center;
}
