*{
  box-sizing: border-box;
}
body {
background-color: tan;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.splash {
  width: 700px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: black;
  align-items: center;
  display: block;
  margin: 20px;
}
.splash p {
  margin-top: 60px;
  text-align: center;
  padding: 0 10px;
  font-size: 25px;
  line-height: 25px;
  color: white;
  text-shadow: none;
  cursor: pointer;
}
.splash h2 {
  font-size: 30px;
  line-height: 50px;
  margin-top: 20px;
  text-align: center;
  color: whitesmoke;
  text-shadow: 2px 2px 2px purple;
  cursor: pointer;
}
#game{
display: none;
flex-direction: column;
align-items: center;
  width: 700px;
  height: 500px;
}
#title{
  /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
  padding: 5px 0px 15px 0px;
  font-size: 60px;
  height: 70px;
  text-align: center;
  text-shadow: 2px 2px 2px whitesmoke;
  cursor: pointer;
}
