.icon__container {
  display: flex;
  justify-content: center;
  margin-top: 120px;
  margin-bottom: 26px;
}
.icon__svg {
  width: 83px;
  height: 83px;
}
.donate {
  padding-top: 53px;
  font-size: 40px;
  font-weight: 700;
}
.donate__title {
  margin-bottom: 43px;
  text-align: center;
}
.donate__text {
  margin-bottom: 150px;
}
.donate__button {
  width: 543px;
  height: 143px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: 700;
  border: none;
  background-color: var(--main-accent-color);
  border-radius: 22px;
  cursor: pointer;
  transition: color 250ms linear;
}
.donate__button:hover {
  color: var(--main-light-color);
}

@media (max-height: 1080px) {
  .icon__container {
    display: flex;
    justify-content: center;
    margin-top: 5vh;
    margin-bottom: 2vh;
  }
  .donate {
    padding-top: 5vh;
    font-size: 4vh;
    font-weight: 700;
  }
  .donate__text {
    margin-bottom: 5vh;
  }
  .donate__button {
    width: 50vh;
    height: 13vh;
    font-size: 4vh;
  }
}

@media (max-width: 1080px) {
  .donate__button {
    max-width: 80vw;
  }
}
