footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: white;
    background-color: black;
}

#navigation-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    padding: 50px;
}

#navigation-links > a {
    text-decoration: none;
    color: white;
    font-size: 15pt;
    margin: 10px;
}

#message-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    font-size: 14pt;
    text-align: center;
}

#contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: white;
    font-size: 14pt;
    text-align: center;
}

.mail-link {
    color: white;
}

#privacy-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#privacy-link {
    padding-left: 10px;
    color: white;
    text-decoration: none;
}