body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #2c2c2c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  gap: 40px;
}

.stat-block {
  width: 300px;
  height: 200px;
  background-color: #555;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.stat-block h2 {
  margin: 0;
  font-size: 20px;
  margin-bottom: 15px;
}

.stat-block p {
  font-size: 36px;
  font-weight: bold;
}
