body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f6f6f6;
  text-align: center;
  padding: 20px;
}

h1 {
  color: #0057A0;
  margin-bottom: 10px;
}

#timer {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(10, 50px);
  grid-template-rows: repeat(10, 50px);
  gap: 2px;
  justify-content: center;
  background-color: #e0d7c6;
  padding: 10px;
  border-radius: 10px;
}
#grid {
  display: grid;
  grid-template-columns: repeat(10, 40px);
  gap: 2px;
  margin: 20px auto;
  background: #eee;
  padding: 10px;
  border-radius: 10px;
}

.cell {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wall {
  background: #888;
}

.player {
  background-image: url('sempi.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.goal {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message {
  font-size: 1.4rem;
  color: green;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(10, 32px);
    grid-template-rows: repeat(10, 32px);
  }

  .cell {
    width: 32px;
    height: 32px;
  }

  .goal {
    font-size: 22px;
  }

  #timer {
    font-size: 1.2rem;
  }

  .message {
    font-size: 1.1rem;
  }
}
