p {
  font-size: 14px;
}

.card {
  background-color: #F0EBE2;
  border-radius: 50px 0px 50px 50px;
  outline: 2px solid #BAB3A6;
  outline-offset: -16px;
  position: relative;
}

.card-save {
  opacity: 0%;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  cursor: pointer;
}

.card-save:hover {
  opacity: 100%;
}

.saved::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0px 80px 80px 0px;
  border-color: #DC1F1F #FBFBFB;
  cursor: pointer;
}

.card-project {
  width: 243px;
  height: 308px;
  padding: 50px;
}

.card-project h2 {
  margin: 24px 0px;
}

.category {
  color: #BBBBBB;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}

.tag {
  background-color: #F8625A;
  border-radius: 50px;
  padding: 6px 16px;
}

.card-person {
  width: 400px;
  height: 300px;
  padding: 50px;
  z-index: 1;
}

.card-person img {
  width: 125px;
  height: 115px;
  z-index: 333;
  transform: rotate(-2deg);
}

.img-container {
  position: relative;
  margin: 20px;
}

.img-container::before {
  content: "";
  width: 125px;
  height: 115px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #FBFBFB;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
}