body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #d7cccc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
}

.card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 56px;
  font-weight: bold;
  color: #333333;
  background: none;
  margin: 0;
}

h1#students_count {
  color: #ff6f61;
}

h1#Freelance_count {
  color: #50e3c2;
}

h1#Expert_count {
  color: #f5a623;
}

h1#Companies_count {
  color: #00bcd4;
}

h3 {
  font-size: 16px;
  color: #333333;
  margin: 10px 0;
}
