* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f10a0a;
  color: white;
}

section {
  padding: 50px 20px;
  text-align: center;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: #32352F;
  padding: 40px 20px;
  width: 100%;
}

.stat {
  flex: 1 1 10px;
  margin: 20px;
  min-width: 150px;
}

.stat h3 {
  font-size: 48px;
  color: #fff;
}

.stat p {
  font-size: 24px;
  color: #77ff77;
}

/* Responsive */
@media (max-width: 768px) {
  .stat h3 {
    font-size: 36px;
  }

  .stat p {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .stats {
    flex-direction: column;
    align-items: center;
  }

  .stat {
    margin: 15px 0;
  }

  .stat h3 {
    font-size: 32px;
  }

  .stat p {
    font-size: 18px;
  }
}
