.card {
    background-color: gray;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    width: 10%;
    height: 180px;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
    float: left;
    position: relative;
  }
  .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
  .card:hover {
    background-color: #0e472d;
    color: #fbe218;
    box-shadow: 0 8px 16px 0 rgba(50, 50, 50, 0.2);
  }

  .addtxt {
    width: 88%;
    position: absolute;
    top: 50%;
    text-align: center;
  }

  .head {
    display: block;
    width: 84px;
    border-radius: 50%;
    border: 2px solid gray;
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .name {
    font-weight: bold;
  }

