body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.game-container {
    position: relative; /* Потрібно для позиціонування UI */
    width: 100%;
    max-width: 600px; /* Максимальна ширина для десктопу */
    aspect-ratio: 1/1;
    border: 1px solid #ccc;
    overflow: hidden;
}

canvas {
    display: block;
}

.ui {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #333;
    font-family: Arial, sans-serif;
}

.rules-container {
padding: 2em;
  border: #ccc 2px solid;
  margin: 2em;	
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
}