body {
  background-color: #1e1e1e;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
  padding: 20px;
}

.game-area {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.onion {
  width: 40px;
  height: 40px;
  display: grid;
  grid-template-columns: repeat(2, 20px);
  grid-template-rows: repeat(2, 20px);
  cursor: pointer;
}

.red div { background-color: red; }
.blue div { background-color: blue; }
.yellow div { background-color: yellow; }

.red, .blue, .yellow {
  display: grid;
  grid-template-columns: repeat(2, 20px);
  grid-template-rows: repeat(2, 20px);
}

#pikmin-container {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.pikmin {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#lore-box {
  margin-top: 30px;
  padding: 15px;
  background-color: #2e2e2e;
  border: 1px solid #444;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}
body {
  background-color: #1e1e1e;
  color: white;
  font-family: sans-serif;
  text-align: center;
}

.game-area {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.onion {
  width: 40px;
  height: 40px;
  display: grid;
  grid-template-columns: repeat(2, 20px);
  grid-template-rows: repeat(2, 20px);
  cursor: pointer;
}

.red div, .blue div, .yellow div {
  width: 20px;
  height: 20px;
}

.red div { background-color: red; }
.blue div { background-color: blue; }
.yellow div { background-color: yellow; }

.red, .blue, .yellow {
  display: grid;
  grid-template-columns: repeat(2, 20px);
  grid-template-rows: repeat(2, 20px);
}

#pikmin-container {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pikmin {
  width: 10px;
  height: 10px;
}
#lore-section {
  margin-top: 40px;
  padding: 20px;
  background-color: #2e2e2e;
  border: 1px solid #444;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

#lore-section h2 {
  color: #ffcc00;
  margin-top: 20px;
}

#lore-section ul {
  list-style-type: square;
  padding-left: 20px;
}

#lore-section li {
  margin-bottom: 10px;
  font-style: italic;
}

