.cards, .about {
    padding: 80px 20px;
}


.cards {
    padding: 40px 20px;
}

.cards-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.card {
    background: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 15px 7px 12px rgb(72, 72, 255);
    text-align: center;
    transform : translateY(55px);
    transition: 1s;
    opacity: 0;
    max-width: 400px;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card button {
    background-color: #0078ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 30px;
    cursor: pointer;
    transition: 0.2s;
}

.card button:hover {
    background-color: #005bb5;
    transform: translateY(-15%) scale(1.1);
}

.card h3{
    color: #adc9ff;
}

.card p{
    color: white;
}

.cards h2{
    font-family: "stubi",arial;
    color: transparent;
    font-size: 40px;
    background-image: url("../img/line.png");
    -webkit-text-stroke: 1px black;
    -webkit-background-clip: text;
    background-position: 0 0;
    animation: stubi 20s linear infinite;
}


.customer-card{
    background-color: black;
    box-shadow: 15px 7px 12px rgb(72, 72, 255);
    width: 40%;
    margin: auto;
    padding: 10px 20px;
    margin-top: 25px;
    transform : translateY(55px);
    transition: 1s;
    opacity: 0;
    border-radius: 25px;
}

@media screen and (max-width:768px){
    .customer-card{
        width: 80%;
        padding: 5px 10px;
    }
}
