* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow: hidden;
    background: #020204;
    touch-action: none;
}

#garden {
    display: block;
    width: 100vw;
    height: 100vh;
    cursor: crosshair;
}

#instructions {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Courier New', monospace;
    font-size: 32px;
    letter-spacing: 4px;
    text-align: center;
    pointer-events: none;
    transition: opacity 1.5s ease;
}
