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#customerCount {
    color: #b98985;
  }
  
  h1#clientCount {
    color: #118067;
  }
  
  h1#projectsCount {
    color: #eab155;
  }
  
  h1#coffeeWithCount{
    color: #00d483;
  }
  
  h3 {
    font-size: 16px;
    color: #333333;
    margin: 10px 0;
  }