@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: lavender;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-wrap: wrap;
  gap: 30px;
}

.counter-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  padding: 40px;
  text-align: center;
  width: 200px;
}

.counter {
  font-size: 2.5rem;
  font-weight: 600;
  color: #7d5ba6; /* lavenderish tone */
}

.counter-container span {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  color: #444;
}
