@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #eb893e;
}

section {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 80px 0 0;
}

section h2 {
    font-size: 5rem;
}

section>p {
    text-align: left;
}

section .cards {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-top: 50px;
    padding: 0 10px;
    justify-content: space-between;
}

section .cards .card {
    background: #fff;
    list-style: none;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
    margin-bottom: 80px;
    width: calc(100% / 3 - 30px);
    text-align: center;
    transition: all 0.3s;

}

section .cards .card::after {
    background: #fff;
    list-style: none;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
    margin-bottom: 80px;
    width: calc(100% / 3 - 30px);
    text-align: center;
    transition: all 0.3s;

}

.services .card img {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 1.7%;
    object-fit: cover;
    transition: all 0.3s;
}

.services .card:hover {
    transition: all 0.3s;
    transform: scale(1.2);
}

.services .card .pythonimg {
    width: 300px;
    height: 100px;
    margin-top: 40px;
}

.cards .card p {
    padding: 0 15px;
    margin-top: 5px;
}


@media screen and (max-width: 860px) {
    section>p {
        text-align: center;
    }

    section .cards .card {
        width: calc(100% / 2 - 15px);
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 560px) {
    section .cards .card {
        width: 100%;
        margin-bottom: 30px;
    }
}