* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
  
body {
    background: linear-gradient(135deg, #2c003e, #000000);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
  
.counter-container {
    display: flex;
    gap: 30px;
}
  
.counter-box {
    background: #1f1f1f;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 250px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}
  
.counter-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    background-color: #2a2a2a;
}
  
.counter-box h1 {
    font-size: 3.5rem;
    margin: 0;
    color: #e0e0e0;
    font-weight: bold;
    letter-spacing: 1px;
}
  
.counter-box p {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #b0b0b0;
}
  
.counter-box i {
    font-size: 4.5rem;
    color:  #a67c00; 
    margin-bottom: 15px;
    transition: color 0.4s ease;
}
  
