/*
CSS for Polychromatics
Joshua Clayton
*/

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

html {  
  flex-direction: column;
}

body {
  flex-direction: row;
  overflow: hidden;
}

canvas {
  display: block;
  margin: auto;
  transition: opacity 500ms;
  opacity: 0;
}

* {
  box-sizing: border-box;
}