#home{
    
    background-color: var(--first-color);
   width: 100%;
}

.happy-customer{
    
    padding: 2rem 0;
    text-align: center;
    height: 30vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: #fff;
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.customer-count{
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px #480303f5;
}
.number{
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px #480303f5;
}

#particles-js{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}


@media screen and (max-width: 768px){
    #particles-js{
        height: 50%;
    }
    .happy-customer{
        height: 50vh;
        flex-direction: column;
    }
    .customer-count{
        font-size: 1.5rem;
    }

    
    
}