:root {
    --bg-color: #2c2c2c;
    --text-color: #e0e0e0;
    --header-bg: #1a1a1a;
    --content-bg: #3a3a3a;
    --input-bg: #4a4a4a;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
}

#content {
    position: absolute;
    width: 100%;
    height: 100%;
}

#main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#canvas {
    max-width: 50em;
    max-height: 100%;
    object-fit: contain;
    cursor: none;
}
