@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz@9..40&display=swap");

.containershowcase {
  height: 88.5rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.875rem;
}

.card__showcase {
  display: flex;
  width: 23.125rem;
  height: 25.125rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;

}
.showcase__listcard {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.87rem;
}
.title__showcase {
  margin-bottom: 0;
  font-size: 2.625rem;
  font-style: normal;
  font-weight: 700;
  color: var(--clr-darkpurple);
}
.subtitle__showcase {
  width: 47.375rem;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  color: var(--clr-verydarkgray);
}
.showcase__listbtn {
  display: flex;
  gap: 1.88rem;
}

.viewbtn {
  width: 12.5rem;
  height: 3.125rem;
  background-color: var(--clr-lightgreen);
  border-radius: 6.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--clr-white);
}

.downloadbtn {
  width: 12.5rem;
  height: 3.125rem;
  border-radius: 6.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 2px var(--clr-gray);
}
.card__showcasetitle {
  width: 23.125rem;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  color: var(--clr-darkpurple);
}
.card__showcasedesc {
  width: 22.9375rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  color:var(--clr-verydarkgray);
}
.viewbtn:hover{
    background-color: var(--clr-darkgreen);
}
.downloadbtn:hover{
    background-color: var(--clr-gray);
}