/* 🌱 Styles for Conway's Game of Life */

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
  padding: 10px;
  box-sizing: border-box;
}

canvas {
  border: 1px solid black;
  max-width: 100%;
}

button {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 16px;
}

.back-to-til {
  color: purple;
  text-decoration: underline;
  display: block;
  margin: 10px 0;
  font-size: 1.2em;
  text-align: center;
}

.rules {
  margin-top: 20px;
  max-width: 600px;
  text-align: left;
}

.rules h2 {
  text-decoration: underline;
  font-weight: bold;
  margin-bottom: 10px;
}

.rules ol {
  margin: 10px 0;
  padding-left: 20px;
}
