html {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  cursor: url(e176e41f602a4bda120c.png) 2 2, auto;
}

.game-container {
  text-align: center;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.game-container h1 {
  margin-top: 0;
  color: #333;
  font-size: 2em;
  margin-bottom: 20px;
}

.game-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
  background-color: #333;
  padding: 10px;
  border-radius: 8px;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

.cell {
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.2s ease;
}

.img-goblin {
  width: 100%;
  height: 100%;
}

.gamestate {
  display: block;
  order: 2px solid #ddd;
  padding: 10px;
  border-radius: 4px;
  font-size: 18px;
  justify-content: center;
  align-items: center;
}
