body {
  width: 100%;
  background-color: powderblue;
  color: navy;
  font-family: "Belgrano";
  font-size: 20px;
  text-align: center;
  white-space: nowrap;
}
#directions {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%);
}

#startButton {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%);
  color: black;
  font-size: 45px;
  background-color: mediumseagreen;
  font-family: "Belgrano";
  border-radius: 15px;
  text-align: center;
}

#restartButton{
  position: absolute;
  top: calc(50% - 150px);
  left: calc(50% - 300px);
  color: black;
  font-size: 22px;
  background-color: indianred;
  font-family: "Belgrano";
  border-radius: 15px;
  text-align: center;
  
}

#resetButton{
  position: absolute;
  top: calc(50% - 150px);
  left: calc(50% - 300px);
  color: black;
  font-size: 22px;
  background-color: indianred;
  font-family: "Belgrano";
  border-radius: 15px;
  text-align: center;
  
}

#scoreCounter {
  position: absolute;
  top: calc(50% - 170px);
  left: calc(50% + 200px);
  display: none;
  user-select: none;
}

#bestScore {
  position: absolute;
  top: calc(50% - 140px);
  left: calc(50% + 200px);
  display: none;
}

#message{
  position: absolute;
  font-weight: bold;
  top: 75%;
  left: 50%;
  transform: translate(-50%);
  color: crimson;
}

#timer{
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translate(-50%);
  display: none;
  font-size: 25px;
  color: seagreen;
}


.allSqs{
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: black;
  transform: translate(-50%, -50%);
}

#square1{
  top: calc(50% - 110px);
  left: calc(50% - 110px);
}  

#square2{
  top: calc(50% - 110px);
  left: 50%;
}

#square3{
  top: calc(50% - 110px);
  left: calc(50% + 110px);
}

#square4{
  top: 50%;
  left: calc(50% - 110px);
}

#square5{
  top: 50%;
  left: 50%;
}

#square6{
  top: 50%;
  left: calc(50% + 110px);
}

#square7 {
  top: calc(50% + 110px);
  left: calc(50% - 110px);
}

#square8{
  top: calc(50% + 110px);
  left: 50%;
}

#square9{
  top: calc(50% + 110px);
  left: calc(50% + 110px);
}

