body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#0d1117;
    color:#fff;
}

.section1{
    width:90%;
    margin:auto;
    padding:60px 0;
}

.about-title{
    text-align:center;
    margin-bottom:60px;
}

.about-title h1{
    font-size:45px;
    color:#8f7cff;
    margin-bottom:20px;
}

.about-title p{
    max-width:850px;
    margin:auto;
    color:#ccc;
    line-height:1.8;
    font-size:17px;
}

.team{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    margin-bottom:70px;
}

.member{
    width:320px;
    background:#171b22;
    border-radius:15px;
    text-align:center;
    padding:30px;
    transition:.4s;
}

.member:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 25px rgba(143,124,255,.35);
}

.member img{
    width:170px;
    height:170px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #8f7cff;
    margin-bottom:20px;
}

.member h2{
    margin:10px 0;
}

.member h4{
    color:#8f7cff;
    margin-bottom:15px;
}

.member p{
    color:#cfcfcf;
    line-height:1.7;
}

.project-table h2{
    text-align:center;
    color:#8f7cff;
    margin-bottom:30px;
}

table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:10px;
}

table th{
    background:#8f7cff;
    color:#fff;
    padding:15px;
    text-align:left;
    width:30%;
}

table td{
    background:#171b22;
    color:#ddd;
    padding:15px;
}

table tr{
    border-bottom:1px solid #2f3540;
}

table tr:hover td{
    background:#202632;
}

@media(max-width:768px){

.about-title h1{
    font-size:32px;
}

.member{
    width:100%;
}

table{
    font-size:14px;
}

}
 nav{
    margin-top: 10px;
    float: right;
    padding: 20px;
    
 } 
 nav a{
    text-decoration: none;
    color: #ddd;
    transition: .3s;
 } 
 nav a:hover{
    color:#8f7cff;
 } 
 header{
    position: fixed;
    width: 100%;
 }