body {
  background-image: linear-gradient(to right bottom, #004b7a, #73b6c7);
}

.content {
  padding-top: 40px;
  height: fit-content;
  width: 95vw;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.titlu p {
  text-align: center;
  color: #edf0f1;
  font-size: 4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 3rem;
  margin: 60px 20px 40px 20px;
}

.icon-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 400px;
  height: 450px;
  margin: 10px 20px;
  background-color: #2e7a92;
  box-shadow: 14px 7px 18px #00000029;
  border-radius: 16px;
}

.card {
  position: absolute;
  border-radius: 50%;
  width: 75%;
  height: 66%;
  transform-style: preserve-3d;
  transition: transform 0.4s ease-in;
  top: 40px;
  border-style: solid;
  border-width: 4px;
  border-color: #edf0f1;
}

.card:hover {
  transform: rotateY(180deg);
}

.front {
  border-radius: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.pic {
  aspect-ratio: 1;
  background-color: #edf0f1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 6px;
}

.back {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  background-color: #edf0f1;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform: rotateY(180deg);
}

.contact-member {
  transition: all 0.2s ease-in;
  width: 40px;
  margin: 5px;
}

.contact-member:hover {
  scale: 1.2;
  opacity: 0.8;
}

.nume {
  position: absolute;
  bottom: 50px;
}

.nume p {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #edf0f1;
  font-weight: 800;
  font-size: 2rem;
}

@media (max-width: 471px) {
  .icon {
    width: 330px;
    height: 370px;
  }

  .card {
    height: 66%;
  }

  .titlu p {
    font-size: 2.7rem;
  }

  .nume p {
    font-size: 1.4rem;
  }
}

@media (max-width: 390px) {
  .icon {
    width: 270px;
    height: 300px;
  }

  .card {
    height: 67%;
    top: 25px;
  }

  .titlu p {
    font-size: 2.2rem;
  }

  .nume {
    bottom: 30px;
  }
}
