*{
  font-family: "Germania One";
}
 body{
  width: 100%;
  height: 100%;
  margin-top: 50px;
  background: #ccc;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#breakout{
  /* width: 400px;
  height: 500px; */
  background-image: url('../images/bg.jpg');
  background-position: center;
  background-size: cover;
  border: 5px solid darkblue;
  border-radius: 5%;
}
#splash{
  width: 390px;
  height: 500px;
  cursor: pointer;
  position: absolute;
  top: 55px;  
  /* background: rgba(0,0,0,0.5); */
  display: block;
}
#splash h1{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: blue;
  text-shadow: 1px 1px 1px purple;
  margin-top: 10px;
  text-align: center;
}
#splash h2{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: blue;
  margin-top: 43px;
  text-align: center;
}
#splash p{
  font-family: Arial, Helvetica, sans-serif;
  color: blue;
  font-size: 18px;
  line-height: 21px;
  margin-top: 135px;
  padding-left: 5px;
  text-align: justify;
}
#gameover{
  position: absolute;
  width: 400px;
  height: 500px;
  background: rgba(0,0,0,0.5);
  display: none;
}
#youwon{
  position: absolute;
  width: 100px;
  top: 200px;
  left: 150px;
  display: none;
}
#youlose{
  position: absolute;
  width: 400px;
  top: 100px;
  left: 0;
  display: none;
}
#restart{
  position: absolute;
  top: 310px;
  left: 155px;
  cursor: pointer;
  font-size: 1.25em;
  color: white;
}
