* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    /* Create scrollable space for the camera animation. 
       2000vh stretches the animation over a much longer scroll distance. */
    height: 2000vh;
    background-color: #d3d8e8; /* Same as fog */
}

.webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    outline: none;
    z-index: -1;
}
