@import url("./baseStyle.css");

.donate {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.donate .donate-card {
  padding: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 25px;
  color: #fff;
}

.donate .donate-card:first-child {
  background: var(--primary-color);
}

.donate .donate-card:last-child {
  background: var(--primary-textColor);
}

.donate .donate-card .donate-button {
  display: grid;
  grid-template-columns: auto 0.3fr auto;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: 20px;
}

.donate .donate-card .title {
  font-size: 36px;
  font-weight: 400;
  padding-bottom: 5%;
}

.donate .donate-card .desc {
  font-weight: 600;
  padding-bottom: 5%;
}

.donate .donate-card .donate-button .more-button {
  width: 100%;
}

@media screen and (max-width: 980px) {
  .donate {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
