
.content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-display: swap;
    font-size: 1.0rem;
    font-weight: 400;
    color: white;
}

/* footer */
footer {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--darkBlue);
}

footer .content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 20px;
    font-size: 0.9rem;
    color: var(--tan);
    background-color: rgba(0, 255, 255, 0.0);
}

footer a {
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.2s;
}

@media (max-width: 768px) {
    footer .content {
        flex-direction: column;
    }
}