.team h2{

    text-align:center;
    font-size:38px;
    margin-bottom:60px;

}

.cards{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:35px;
    max-width:1000px;
    margin:0 auto;
    position:relative;
    
}

.card{

    background:#1a1d26;
    width:100%;
    max-width:280px;
    margin:0 auto;
    border:1px solid rgba(255,255,255,.05);
    border-radius:20px;
    padding:30px;
    transition:.4s;
    text-align:center;

}

.card:hover{

    transform:translateY(-12px);
    box-shadow:0 0 30px rgba(0, 213, 255, 0.836);

}

.card img{

    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #00d4ff;

}

.card h3{

    margin-top:20px;

}

.card p{

    margin-top:30px;
    color:rgb(248, 245, 245);
    font-weight:600;
    text-shadow:0 0 30px white;

}


