/* From Uiverse.io by Javierrocadev */ 
.dwn-card {
  width: 250px;
  height: 200px;
  border-radius: 15px;
  background: var(--crimson);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.dwn-card::before {
  content: "";
  height: 100px;
  width: 100px;
  position: absolute;
  top: -40%;
  left: -20%;
  border-radius: 50%;
  border: 35px solid rgba(255, 255, 255, 0.102);
  transition: all .8s ease;
  filter: blur(.5rem);
}


.text {
  flex-grow: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  color: var(--amber);
  font-weight: 900;
  font-size: 1.4em;
}

.subtitle {
  font-size: .6em;
  font-weight: 300;
  margin-top: 10px;
  color: var(--amber-pale);
}

.dwn-icons {
  display: flex;
  justify-items: center;
  align-items: center;
  width: 250px;
  font-weight: 500px;
  border-radius: 0px 0px 15px 15px;
  overflow: hidden;
}

.btn {
  border: none;
  width: stretch;
  height: 35px;
  background-color: rgba(247, 234, 234, 0.589);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-icon {
  width: 25px;
  height: 25px;
  stroke: rgb(38, 59, 126);
}

.btn:hover {
  background-color: rgb(247, 234, 234);
}

.dwn-card:hover::before {
  width: 140px;
  height: 140px;
  top: -30%;
  left: 50%;
  filter: blur(0rem);
}