*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body {
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(1,3,32,1) 100%);
}

.team-section{
    margin-top: 75px;

}
.team-title h1{
    font-size: 50px;
    color: white;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.team-cards{
    width: 85%;
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
    padding: 30px 0px;
    filter: drop-shadow(1px 1px 5px #2272FF);
}
.team-card {
    background-color: #070814;
    border-radius: 50px;
    box-shadow: 0px 2px 5px #2272FF;
    margin: 0px 20px;
    padding: 20px;
    text-align: center;
    transition: transform 0.6s ease;
    width: calc(33.33% - 20px);
    border: 2px solid #2272FF;
}
.team-card:hover{
    transform: translateY(-12px);
}
.team-image img{
    border: 2px dashed #2272FF;
    border-radius:50%;
    height: 130px;
    width: 130px;
    object-fit: cover;
    margin-bottom: 10px;
}
.team-detail h3{
    color: white;
    font-size: 30px;
    margin: 15px 0px;
}
.team-detail p{
    color: #1627c2;
    font-size:18px
}
