/**
 * ColorLights (Simplified Version) - Interactive Light Simulation
 * Stylesheet
 * 
 * @author David Bookstaber
 */

body {
    margin: 0;
    overflow: hidden;
}

canvas {
    display: block;
    width: 100vw;
    height: 100vh;
}

button {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
