.container {
    font-family: "Public sans", sans-serif;
    margin: 80px auto;
    width: 95%;
    max-width: 1050px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    border: 1px solid #dfdfdf;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
}

.profile {
    height: 100px;
    width: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile img {
    height: 100%;
    width: 100%;
}

.head {
    font-weight: 600;
    font-size: 24px;
}
.description {
    margin: 30px 0px;
    font-size: 16px;
    color: #5f5f5f;
    font-weight: 500;
}

@media screen and (max-width: 950px) {
    .container {
        grid-template-columns: repeat(1, 1fr);
    }
    .card {
        padding: 20px 35px;
    }
}
