body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    overscroll-behavior-y: none;
    touch-action: none;
    -webkit-text-size-adjust: 100%;
}

.scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#smokeCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.email-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(80px, 110px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    letter-spacing: 0.5px;
    z-index: 10;
    user-select: text; 
    cursor: text;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.8);
}

@media (max-width: 600px) {
    .email-text {
        /* On narrow screens, center the text below the ashtray instead of off to the right */
        transform: translate(-50%, 140px);
    }
}
