:root {
    --zee-primary-color: #d6bfcb;
    --zee-secondary-color: #999999;
    --zee-background-color: white;
}

body {
    background-color: var(--zee-background-color);
    color: var(--zee-primary-color);
}

#zee-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 44px;
    overflow: auto;
}

.zee-copy {
    color: var(--zee-secondary-color);
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}

#zee-logo {
    margin-top: 40px;
    text-align: center;
}

#zee-logo>img {
    width: 400px;
    height: 400px;
    max-width: 60%;
    max-height: 60%;
}

#zee-footer {
    position: absolute;
    padding-top: 8px;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 36px;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--zee-primary-color);
    color: var(--zee-background-color);
}