
h1{
  margin-top: 30px;
  margin-bottom: 10px;
}
body {
    display: flex;
    place-items: center;
    font-family: Georgia, serif;
    background: #222;
    color: #fff;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}
#game{
    display: grid;
    grid-template-columns: repeat(7, 60px);
    grid-template-rows: repeat(6, 60px);
    gap: 6px;
    background: rgb(14, 14, 47);
    border-radius: 10px;
    box-shadow: 0 2px 16px #0008;
    margin-bottom: 20px;
}
.cell {
  height: 60px;
  width: 60px;
  align-items: center;
  display: flex;
  justify-content: center;
  cursor: pointer;
  background: #555e7b;
  border-radius: 50%;
  transition: background 0.2s;
  box-shadow: 0 1px 4px #0006;
  padding: auto;
}
.cell.red {
  background: red;
  
}
.cell.yellow {
  background: yellow;
}
#reset {
  background: rgba(99, 99, 99, 0.584);
  color: #fff;
  border-radius: 5px;
  padding: 8px 20px;
  font-size: 1em;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
#reset:hover{
  background: #525252;
}
#status {
  font-size: 1.2em;
  margin-bottom: 30px;
}
