/* style.css */

body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f0f0f0;
}

h1 {
  margin-bottom: 20px;
}

#maze-container {
  display: grid;
  grid-template-columns: repeat(15, 30px);
  grid-template-rows: repeat(15, 30px);
  gap: 1px;
}

.cell {
  width: 30px;
  height: 30px;
  background-color: #fff;
}

.wall {
  background-color: #333;
}

.player {
  background-color: red;
}

.goal {
  background-color: green;
}
