
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(#D5A3FF 0%, #77A5F8 100%);
}
.wrapper{
    background: #fff;
    width: 680px;
    border-radius: 50px;
    padding: 20px;
    box-shadow: 12px 12px 16px 0 rgba(0, 0, 0, 0.25),
   -8px -8px 12px 0 rgba(7, 0, 0, 0.3);
   
    
}
h2{
    text-align: center;
}
hr{
    width: 100px;
    margin: 10px auto;
}
.members{
    display: flex;
    
    
}
.team-mem{
    margin: 8px;
    background: #0a0000;
    width: 200px;
    
    border-radius: 50px;
    padding: 10px;
    box-shadow: 12px 12px 16px 0 rgb(255, 255, 255),
   -8px -8px 12px 0 rgba(61, 58, 58, 0.3);
}

.team-mem :hover{
    background: #fdfdfe;
    opacity: .6;
    transition: .8s;
}
img{
    width: 100px;
    height: 100px;
    border-radius: 35%;
    margin: 40px;
    margin-left: 40px;
}
h4,p{
    text-align: center;
    font-size: 12px;
    margin: 7px;
    color: #fff;
}




	
	

