body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: #24a88c;
}

#game {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  gap: 5px;
  justify-content: center;
  margin: 20px auto;
 
}

.cell {
  width: 100px;
  height: 100px;
  background: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid #333;
   border-radius: 2px;
}

.cell:hover {
  background: #c9b5b5;
}

#status {
  font-size: 1.5rem;
  margin-top: 10px;
}

/* From Uiverse.io by adamgiebl */ 
button {
  position: relative;
  display: inline-block;
  margin: 15px;
  padding: 15px 30px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #050505;
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.5s;
  border: 2px solid #080808;
  border-radius: 10px;
  box-shadow: inset 0 0 0 0 #080808;
}

button:hover {
  color: white;
  box-shadow: inset 0 -100px 0 0 #725AC1;
}

button:active {
  transform: scale(0.9);
}
