body {
  margin: 0;
}

.donate {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.donate .container {
  padding-inline: 80px;
}

.donate__logo {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  display: block;
}

.donate__buttons {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 20px;
  flex-wrap: wrap;
}

.donate__buttons-item {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 16px;
  background-color: #dc2633;
  color: white;
  text-decoration: unset;
  padding: 10px;
  text-transform: uppercase;
  text-align: center;
  min-width: 200px;
  margin-inline: auto;
  transition: .25s all ease-in-out;
  border-radius: 50px;
}

.donate__buttons-item:is(:hover, :focus) {
  background-color: #a70101;
}

.footer {
  padding-bottom: 20px;
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
}

.footer .container {
  padding-inline: 80px;
}

.footer .footer__inner-container {
  width: fit-content;
  margin-inline: auto;
  border: 1px solid black;
  padding: 10px 20px;
}

.footer .footer__disclaimer {
  margin: 0;
  text-align: center;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.footer a {
  text-align: center;
  display: block;
  font-family: sans-serif;
  font-size: 16px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 12px;
}

.footer__links a {
  font-size: 14px;
}

.header-logo {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  display: block;
}

.basic-page .container {
  padding-inline: 80px;
  padding-block: 50px;
}

.basic-page__title {
  font-family: "Montserrat", sans-serif;
  color: #213875;
  font-weight: 800;
  font-size: 2.625rem;
  line-height: 2.625rem;
}

.basic-page__body {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 5vw;
  -moz-column-gap: 5vw;
  column-gap: 5vw;
}

.basic-page__body * {
  font-family: "Montserrat", sans-serif;
}

.basic-page__body a {
  color: #da1333;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
}

@media screen and (max-width: 950px) {
  .basic-page__body {
    column-count: 1;
  }
}

@media screen and (max-width: 780px) {
  .donate .container {
    padding-inline: 40px;
  }

  .donate__buttons {
    margin-top: 50px;
  }

  .basic-page .container {
    padding-inline: 40px;
  }

  .footer .container {
    padding-inline: 40px;
  }

  .footer .footer__inner-container {
    padding-inline: 10px;
  }
}

@media screen and (max-width: 450px) {
  .donate {
    justify-content: unset;

  }

  .donate .container {
    padding-inline: 20px;
    padding-top: 20%;
  }

  .footer .container {
    padding-inline: 20px;
  }
}