.services{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: #0f172a;
    padding: 2rem 5%;
    filter: brightness(120%);
}

.services p{
    color: rgba(245, 245, 245,0.7);
}

.services h2,
.services h3{
    color:whitesmoke;
}

.services span{
    color:whitesmoke;
}

.services-heading{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.services-heading h2{
    font-size: 2rem;
    text-align: center;
}

.services-heading p{
    font-size: 1rem;
    text-align: center;
}

.services-body{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    grid-auto-rows: 1fr;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.services article{
    width: 100%;
    height: 100%;
    max-width: 35rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    filter: brightness(120%);
    border: 1px solid rgba(59, 130, 246, 0.2);

    background-color: #0f172a;
    padding: 2rem;
    filter: brightness(120%);
    border-radius: 10px;

}

.services-body article:first-child span{
    background-color: rgba(59, 130, 246, 0.5);
    padding: 1rem;
    width: fit-content;
    border-radius: 10px;
}

.services-body article:nth-child(2) span{
    background-color: #22c55eb3;
    padding: 1rem;
    width: fit-content;
    border-radius: 10px;
}


.services-body article:nth-child(3) span{
    background-color: #a855f780;
    padding: 1rem;
    width: fit-content;
    border-radius: 10px;
}


.services article p{
    color: rgba(245, 245, 245,0.6);
    line-height: 1.5;
}


@media(min-width:768px){

    .services-heading h2{
        font-size: 2rem;
    }

    .services-heading p{
        font-size: 1.2rem;

    }

    .services article h3{
        font-size: 1.5rem;
    }
}


@media(min-width:1024px){

    .services{
        gap: 4rem;
    }

    .services-heading h2{
        font-size: 2.5rem;
    }

    .services-body{
       grid-template-columns: repeat(3, 1fr);
       grid-template-rows: auto;
    }
}