/* VARIABLES */
:root {
    --bg-color: #d9d9d9;
    --dark-color: #222;
    --light-color: #f5f0e1;
}

/* GENERAL - No tocar */
body {
    background-color: var(--bg-color);
    display: flex;
    padding: 2rem;
    justify-content: center;
    align-items: center;
}

html {
    font-size: 12px;
}

#poster{
    aspect-ratio: 3 / 5;
    max-height: 70vmax;
    height: 100%;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
    font-family: system-ui, 'Segoe UI', 'Helvetica Neue', sans-serif;
    border: .5rem solid var(--light-color);
}

#poster canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: grab;

    &:active {
        cursor: grabbing;
    }
}

#poster .title {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    pointer-events: none;
}

.title svg {
    width: 100%;
    height: 100%;
    fill: var(--light-color);
}

@media (min-width: 1024px) {

    html {
        font-size: 24px;
    }

}