body{
  background-color: rgb(40, 40, 40);
  color: white;
  font-family: Arial, sans-serif;
}

.row{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.col{
  display: flex;
  justify-content: center;
  flex: 1;
}

a{
  text-decoration: none;
}

.gameDiv{
  background-color: lightgray;
  width: 200px;
  height: 200px;
  color: rgb(40, 40, 40);

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  font-size: 24px;
  font-weight: bold;

  transition: 0.2s;
}

.gameDiv:hover{
  background-color: white;
  transform: scale(1.05);
}
#goBack{
  background-color: lightgreen;
  height: 50px;
  width: 80px;
  border-radius: 10px;
  text-decoration: none;
  color: rgb(40, 40, 40);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s linear;
}
#goBack:hover{
  background-color: green;
  transform: scale(1.05);
}