html,
body {
  margin: 0;
  padding: 0 0 20px 0;
  box-sizing: border-box;
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  background-image: url('img/bg.png');
  background-size: contain;
  background-repeat: no-repeat;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 90px;
  margin: 0;
  max-width: 390px;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  margin: 15px 0;
}

h3.amount {
  margin-top: 2px;
  margin-bottom: 10px;
}

h5 {
  margin: 0;
  color: #c1c1c1;
  font-weight: normal;
}

.color-heading {
  background: linear-gradient(
    180deg,
    #1da1f2 0%,
    #1da1f2 62%,
    #ffcd03 62%,
    #ffcd03 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
}
.heading-main p {
  font-size: 20px;
  line-height: 26px;
  max-width: 430px;
}

.highlight-blue {
  color: #1da1f2;
}
.highlight-yellow {
  color: #ffcd03;
}

.brush-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 26%;
}

.brush-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 26%;
}

.description {
  font-size: 20px;
  font-weight: 200;
  padding: 30px 10px;
  max-width: 630px;
  margin: 20px;
  position: relative;
  line-height: 28px;
}

.description.top {
  margin: 0;
  margin-top: 4%;
  text-align: center;
  max-width: 600px;
  padding: 0;
}

.header {
  text-align: center;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 100px 0;
  padding: 0 20px;
}

.speech-bubble {
  margin-top: 30px;
  background: url('img/speech-bubble.svg') no-repeat;
  background-size: contain;
  position: relative;
  text-align: center;
}

.contact-banner {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #ffcd03;
  color: #211c1d;
  height: 65px;
  font-size: 20px;
  font-weight: 600;
}

.contact-btn {
  margin-left: 85px;
  height: 36px;
  width: 146px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  background-color: #1ea1f3;
  border: none;
  transition: 150ms;
}

.contact-btn:hover {
  cursor: pointer;
  transform: scale(1.01);
  filter: brightness(105%);
}

.grid {
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  margin-top: 65px;
  justify-items: stretch;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 272px;
  background: linear-gradient(180deg, #0f304f 0%, #120308 100%);
}

.card.supporting {
  background: linear-gradient(180deg, #1b6d1b 0%, #120308 100%);
}

.card-img {
  height: 200px;
  width: 200px;
  margin-top: 26px;
  border-radius: 50%;
}

.card-info {
  min-width: 200px;
}

.tweet-btn {
  margin: 15px 0;
  height: 36px;
  width: 200px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background-color: #eb5757;
  border: none;
  transition: 150ms;
}

.tweet-btn:hover {
  cursor: pointer;
  transform: scale(1.02);
  filter: brightness(110%);
}

.tweet-btn.supporting {
  background-color: #1b6d1b;
}

.twitter-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  height: 20px;
  width: 20px;
  background-image: url('img/twitter-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.twitter-icon.header-icon {
  top: -20px;
  right: 30px;
  height: 40px;
  width: 40px;
}

.flag {
  position: absolute;
  font-size: 74px;
  top: -35px;
  left: -20px;
}

.circle {
  display: inline-block;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin-right: 6px;
}

.color-explain {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-top: 25px;
}

.color-explain p {
  display: flex;
  align-items: center;
  font-size: 20px;
  margin: 5px;
}

.circle.green {
  background-color: #1b6d1b;
}

.circle.red {
  background-color: #c62f42;
}

@media (max-width: 1200px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1000px) {
  .heading-main {
    grid-template-columns: none;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 76px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
  }
}

@media (max-width: 730px) {
  h1 {
    font-size: 62px;
  }
  .description {
    font-size: 18px;
  }
  .contact-banner {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  body {
    background-size: 350%;
  }
  h1 {
    font-size: 42px;
    max-width: 350px;
  }
  h3 {
    font-size: 16px;
  }
  .header {
    margin-top: 60px;
  }
  .heading-main {
    justify-items: center;
  }
  .heading-main p {
    font-size: 14px;
    line-height: 20px;

    text-align: center;
  }
  .description {
    font-size: 12px;
    padding: 10px;
    line-height: 18px;
  }

  .description.top {
    padding: 0 18px;
    margin-top: 0;
  }

  .contact-banner {
    flex-direction: column;
    justify-content: space-evenly;
    font-size: 16px;
    height: 100px;
  }

  .contact-btn {
    margin: 0;
  }

  .grid {
    margin-top: 40px;
  }

  .brush-left {
    width: 33%;
  }

  .brush-right {
    width: 33%;
  }

  .card {
    height: 100%;
    width: 164px;
  }
  .card-img {
    height: 104px;
    width: 104px;
  }
  .card-info {
    max-width: 140px;
    min-width: auto;
  }
  .card-info-name {
    min-height: 40px;
  }
  .tweet-btn {
    margin-top: 16px;
    height: 32px;
    width: 140px;
    /* font-weight: normal; */
    padding: 0px;
    font-size: 12px;
  }
  .twitter-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 20px;
    width: 20px;
  }
  .flag {
    position: absolute;
    font-size: 24px;
    top: -10px;
    left: -5px;
  }
  .color-explain p {
    width: 100%;
    font-size: 14px;
    justify-content: center;
  }
  .circle {
    height: 8px;
    width: 8px;
  }
  .speech-bubble {
    background: url('img/speech-bubble-mobile.svg') no-repeat top center;
  }
}
