html, body {
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #95a5a6;
}

* {
  font-family: "Hack", "Verdana", sans-serif;
  box-sizing: border-box;
}

#container {
  height: 100vh;
  width: 100vw;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 1;
  flex-direction: column;
}

h1 {
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-center;

  font-size: 60px;
  color: #fff;
}
h1 span {
  margin: 50px 10px 0;
  font-size: 10px;
  color: #8e44ad;
}

h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: #8e44ad;
}

canvas {
  box-sizing: content-box;;
  height: 400px;
  width: 800px;
  max-height: 400px;
  max-width: 800px;
  background-color: #171717;

}
