body{
  background-image: url(../images/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: Arial, Helvetica, sans-serif;
}
#container{
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.grid{
  margin-top: 20px;
  height: 560px;
  width: 560px;
  display: flex;
  flex-wrap: wrap;
  background: rgba(170, 170, 170, 0.5);
  border-radius: 10px;
  box-shadow: 5px 5px 5px grey;
}
.grid div{
  height: 70px;
  width: 70px;
  opacity: 1;
}
#splash{
  width: 40%;
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,0.5);
  border-radius: 15px;

  margin: 20px;
}
#splash h1{
  font-size: 60px;
  line-height: 120px;
  color: pink;
  text-shadow: 3px 3px 3px black;
  text-align: center;
  cursor: pointer;
}
#splash p{
  text-align: justify;
  padding: 0 10px;
  font-size: 25px;
  line-height: 32px;
  color: white;
  text-shadow: none;
  cursor: pointer;
}
#splash h2{
  font-size: 30px;
  line-height: 50px;
  margin-top: 20px;
  text-align: center;
  text-shadow: 3px 3px 3px yellow;
  cursor: pointer;
}
#info{
  display: none;
  flex-direction: column;
  align-items: center;
  font-size: 70px;
  text-shadow: 3px 3px 3px yellow;
}
#title{
  color: pink;
  margin: 20px;
  text-shadow: 3px 3px 3px black;
}
#start{
  width: 150px;
  height: 100px;
  font-size: 40px;
  opacity: 0.6;
  border-radius: 20px;
  margin: 20px;
  outline: none;
  text-shadow: 3px 3px 3px yellow;
  background: rgba(238, 238, 238,0.8);
  box-shadow: 5px 5px 5px grey;
  cursor: pointer;
}
#time{
  margin: 20px;
}
#score{
  margin: 20px;
}

