body {
    --primary-color: #0f3e59;
    --secondary-color: #8ebdda;

    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    max-width: 75rem;
    background-color: #ffffff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.logo {
    display: block;
    margin: 0 auto 2rem;
    max-width: 100%;
    height: auto;
    width: 20rem;
}
.content {
    text-align: center;
}
.content h1 {
    font-size: 150%;
    margin-bottom: 1rem;
}
.content h2 {
    margin-bottom: 1rem;
    font-size: 125%;
}
.content p {
    margin-bottom: 1rem;
}
.content a {
    color: var(--primary-color);
    text-decoration: none;
}
.content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
.spacer.vert,
.spacer.top {
    flex-grow: 1;
}
.spacer.bottom {
    flex-grow: 2;
}

.columns {
    display: flex;
    justify-content: center;
}

.column {
    width: 75%;
    max-width: 25rem;
}
.footerlogo {
    display: block;
    margin: 2rem auto 0rem;
    width: 100%;
}
.rightline {
    border-right: 1px solid var(--primary-color);
}

.newsletter {
    margin-top: 3rem;
}

.em {
    font-weight: bold;
}

