html {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  -moz-box-sizing: inherit;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-size: 12px;
  text-align: center;
  color: #17487D;
}
h2{
  text-align: left;
}
h3 em {
  font-size: 0.4em;
}
p {
  font-size: 1.1em;
}
button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  height: 40px;
  width: 100px;
  padding: 5px;
  cursor: pointer;
}
.container {
  height: 800px;
}
.game-board {
  display: block;
  position: relative;
  padding: 2px;
  width: 650px;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #2167B2;
  border-bottom: 0px;
}
.game-board .ball {
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  top: 438px;
  left: 311px;
  background-color: #1E5EA4;
  z-index: 10;
}
.game-board .paddle {
  display: block;
  position: absolute;
  bottom: 20px;
  left: 275px;
  height: 16px;
  width: 96px;
  border-radius: 8px;
  background-color: #379ED7;
}
.game-board .brick {
  display: block;
  position: absolute;
  top: 20px;
  height: 19.0625px;
  width: 76.25px;
  background-color: #2167B2;
}
.game-board .brick.row-7 {
  top: 142.375px;
}
.game-board .brick.row-6 {
  top: 119.3125px;
}
.game-board .brick.row-5 {
  top: 96.25px;
}
.game-board .brick.row-4 {
  top: 73.1875px;
}
.game-board .brick.row-3 {
  top: 50.125px;
}
.game-board .brick.row-2 {
  top: 27.0625px;
}
.game-board .brick.row-1 {
  top: 4px;
}
.game-board .brick.col-8 {
  left: 565.75px;
}
.game-board .brick.col-7 {
  left: 485.5px;
}
.game-board .brick.col-6 {
  left: 405.25px;
}
.game-board .brick.col-5 {
  left: 325px;
}
.game-board .brick.col-4 {
  left: 244.75px;
}
.game-board .brick.col-3 {
  left: 164.5px;
}
.game-board .brick.col-2 {
  left: 84.25px;
}
.game-board .brick.col-1 {
  left: 4px;
}
.game-board .end {
  display: none;
  position: absolute;
  top: 220px;
  left: 240px;
}

/*# sourceMappingURL=style.css.map */
