main-header {
    height: 40px;
    display: flex;
    align-items: center;   /* vertical alignment */
    justify-content: center; /* horizontal alignment */
    background-color: black;
}

main-header img {
    height: 30px;
}

main-footer {
    background-color: black;
    color: #fff;
    text-align: center;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    height: 200px;
    margin-top: 100px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push children to the bottom */
    align-items: center;       /* Center horizontally */
}

main-footer img {
    height: 20px;
}

.additionalInfo {
    background-color: black;
    color: grey
}

body {
    background-color: white;
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

html{
    height: 100%;
    margin: 0;
    padding: 0;
}