@import url("global-styles.css");
@import url("header.css");
@import url("callout.css");
@import url("footer.css");
@import url("card.css");
@import url("article.css");

.donations-paragraph__mail {
    text-align: center;
}

.donations-paragraph__mail span {
    font-weight: bold;
}

.donations-requirements__line {
    width: 90%;
}

.donations-button__make {
    display: block;
    margin: auto;
    width: max-content;
}

.donations-card__paragraph {
    text-align: center;
    font-size: 1rem;
}

.donations-card {
    width: 350px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.main-help {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 80px);
    padding: 30px;
    background-color: #2e2e2e;
    gap: 20px;
    margin-bottom: 25px;
}

.main-help__container {
    width: 70%;
}

.main-help__button {
    width: 250px;
}

.main-help__paragraph {
    color: #888;
}

.main-help__title {
    color: white;
}

@media screen and (max-width: 700px) {
    .main-help {
        flex-direction: column;
        text-align: center;
        width: auto;
    }
  }