body{
    font-family: Arial, Helvetica, sans-serif;
    background: rgb(238,174,202);
    background: linear-gradient(90deg, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}

#game-table {
    background-color: #ccc;
    margin: auto;
}

header {
  text-align: center;
}

h1 {
  margin-top: 40px;
}

button {
  margin: 20px;
  width: 200px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid orange;
  background-color: azure;
  font-size: 1.5rem;
}

button:hover {
  background-color: orange;
  border: 1px solid black;
  cursor: pointer;
}

button:active {
  transform: translateY(2px);
}

td {
  width: 100px;
  height: 100px;
  border: 2px solid black;
  background-color: orange;
  text-align: center;
}

td:hover {
  box-shadow: inset 0 0 10px #fff;
}
