@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    box-sizing: border-box;
}
:root{
    --heading-color:hsl(234, 12%, 34%);
    --text-color:hsl(229, 6%, 66%);
}
body{
    font-family: "Poppins", serif;
    font-size: 15px;
    background-color: hsl(0, 0%, 98%);
}
section{
    margin-top: 50px;
}
section .heading{
    text-align: center;
    color: var(--heading-color);
    font-size: 25px;
}
section .heading p{
    margin: 5px;
}
section .heading p:nth-child(2){
    font-weight: 600;
}
section .heading p:last-child{
    width: 500px;
    max-width: 100%;
    margin: auto;
    color: var(--text-color);
    font-size: initial;
}
section .cards{
    width: 900px;
    max-width: 100%;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    align-items: center;
    gap: 30px;
}
section .cards .col,
section .cards .col2 div{
    background-color: white;
    border-top: 5px var(--color) solid;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-direction: column;
    color: var(--text-color);
}
section .cards .col h2,
section .cards .col2 div h2{
    margin: 0;
    color: var(--heading-color);
    font-size: 20px;
}
img{
    align-self: flex-end;
}