* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  min-height: 100vh;
}

h1 {
  font-size: 2rem;
  margin-bottom: 48px;
  color: #111;
}

.people {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.person img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ddd;
  background: #ccc;
}

.person h2 {
  font-size: 1.5rem;
  color: #111;
}

.house-count {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.house-count .number {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #e63946;
}

.house-count .label {
  font-size: 1rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
