body {
  overflow: hidden;
  background: #d7d7d7;
}
#questshaper {
  width: 720px;
  border: 1px solid black;
  padding: 20px;
}
#canvas {
  width: 704px;
  height: 704px;
  background-color: #000;
  position: relative;
  color: #fff;
}
#canvas h1 {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 30px;
  padding-top: 200px;
}
.piece {
  border: 1px solid white;
  position: absolute;
}

#start {
  animation: blink 0.7s steps(2, start) infinite;
  background: #e1ff5f;
  border-radius: 2px;
  color: #202020;
  cursor: pointer;
  font-size: 28px;
}

@keyframes blink {
  to {
    outline: #e1ff5f solid 1px;
  }
}

#data {
  position: relative;
  background-color: #000;
  border: 1px solid white;
  width: 110px;
  height: 110px;
}
#info {
  background-color: #000;
  color: #fff;
  float: bottom;
  width: 684px;
  padding: 10px;
}
