
*{
    padding: 0%;
    margin: 0%;
}
a:hover{
    color: aquamarine;
}
.card{
    border: none;
     margin-bottom: 50px;
}
.card-body:hover{
    width: 75%;
  color:green;
  text-align: center;
  pointer-events: fill;
  background-color: rgba(128, 128, 128, 0.352) ;
    
}
.card-body{
    width: 100%;
    color: white;
    text-align: center;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.352);
   
}
.icon{
    font-size: 3em;
    color: gray;
    background-color: white;
    border-radius: 50%;
    padding: 50px;
    margin-top: 30px;
}
.icons a{
    text-decoration: none;
    text-align: center;
    font-size: 30px;

}
.ww{
    list-style-type: square;
    color: aquamarine;
    border-bottom: solid 5px aquamarine ;
   
}

.ww a{
    text-decoration: none;
    color: white;
    display: block;
    margin-bottom: 10px;
}
.rrr{
    border-bottom: solid 5px aquamarine ;
}
.btn-1{
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    border-radius: 30px;
}

/* responsive */

@media (max-width:600px) {
    .icon{
   
     display: flex;
     margin: auto;
    }
    .team .card{
        margin: auto;
        grid-template-columns: repeat(2,1fr);
    }
}

