body {
  width: 100%;
  background: rgb(2,0,36);
}


.who {
    padding: 5rem;
    display: flex;
}



.who h1{
    /* margin-top: 10px; */
    border-top-right-radius:15px;
    border-bottom-right-radius:15px;
    border-top-left-radius:15px;
    background: #099bb4;
    padding: 20px;
    width: 320px;
    height: 90px;
    color: white;
    display: flex;
    margin-left: 30rem;
    text-align: center;
    font-size: 40px;
    font-family: 'Kanit', sans-serif;

}

.who h3{
    color: white;
    width: 35rem;
    margin-top: 1rem;
    margin-left: 3rem;
    float: right;
}

.stats {
    display: flex;
    place-content: center;
    align-items: flex-end;
    padding: 5rem 0;
}

.box{
    border-top-right-radius:15px;
    border-bottom-right-radius:15px;
    border-top-left-radius:15px;
    background: rgb(9,155,180);
    padding: 20px;
    width: 320px;
    height: 95px;
    color: white;
    max-width: 100%;
    margin-left: 50px;
    text-align: center;
    font-family: 'Barlow', sans-serif;
}

.box-1{
    border-top-right-radius:15px;
    border-bottom-right-radius:15px;
    border-top-left-radius:15px;
    background: rgba(9, 154, 180, 0.808);
    padding: 20px;
    width: 320px;
    height: 135px;
    color: white;
    max-width: 100%;
    margin-left: 50px;
    text-align: center;
    font-family: 'Barlow', sans-serif;
}

.box h3{
    font-size: 95%;
}

.box-1 h3{
    font-size: 95%;
}

.what h1{
    text-align: center;
    padding: 5rem 0 2rem 0 ;
}

.team {
    padding: 1rem 0rem 10rem 0rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    place-content: center;
  }
  
  .card {
    margin: 40px;
    position: relative;
    max-width: 250px;
    max-height: 350px;
    box-shadow: 0 40px 60px -6px black;
  }
  
  .card-title {
    display: block;
    text-align: center;
    color: #fff;
    background-color: #6184a8;
    padding: 2%;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
  }
  
  .card img {
    width: 100%;
    height: 98%;
    object-fit: contain;
    display: block;
    position: relative;
  }
  
  .card-desc {
    display: block;
    font-size: 1.2rem;
    position: absolute;
    height: 0;
    top: 0;
    opacity: 0;
    padding: 18px 8%;
    background-color: white;
    overflow-y: scroll;
    transition: 0.8s ease;
  }
  
  .card:hover .card-desc {
    opacity: 1;
    height: 100%;
  }
  
.team h1 {
    font-size: 2.8rem;
    color: cyan;
    margin: 40px 0 20px 0;
    text-align: center;
  }
  