body {
  color: #333;
  font-family: Geist, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.section-main {
  background-image: url('../images/flag-united-states-america_Compressed.png');
  background-position: 0 0;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
}

.wrapper-main {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero-main {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero-bottom {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero-image-wrap {
  border: 4px solid #0400ff;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  box-shadow: 0 10px 30px -10px #0003;
}

.heading-h1 {
  color: #fff;
  text-align: center;
  letter-spacing: 5px;
  text-shadow: 3px 3px 2px #ff0000ad;
  margin-bottom: 14px;
  font-size: 4rem;
  line-height: 1;
}

.button {
  background-color: #f0baba;
}

.button-main {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #fff;
  background-color: #bd0808;
  border: 2px solid #0037ff;
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  padding: 13px 34px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background-color .23s;
  display: flex;
}

.button-main:hover {
  background-color: #ffadad;
}

.icon-button {
  width: 28px;
}

.buttons-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.text-block {
  font-size: 1.25rem;
}

.text-main {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  font-family: Geist Mono, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
}

.links-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.button-links {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 125px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background-color .23s;
  display: flex;
}

.end-text {
  color: #fff;
  letter-spacing: 1px;
  font-size: 1rem;
  line-height: 1.3;
}

.bold-text {
  text-shadow: 2px 2px 3px #000;
}

@media screen and (max-width: 991px) {
  .heading-h1 {
    font-size: 3.5rem;
  }

  .text-main {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .section-main {
    padding: 3rem 20px 4rem;
  }

  .hero-main {
    grid-column-gap: 1.3rem;
    grid-row-gap: 1.3rem;
  }

  .heading-h1 {
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-size: 2.8rem;
  }

  .button-main {
    padding: 13px 32px;
    font-size: 1.1rem;
  }

  .icon-button {
    width: 24px;
  }

  .text-main {
    letter-spacing: 2px;
    font-size: 1rem;
  }

  .end-text {
    text-align: center;
    font-size: .8rem;
  }
}

@media screen and (max-width: 479px) {
  .section-main {
    flex-flow: column;
    height: auto;
    padding-bottom: 3rem;
  }

  .wrapper-main {
    height: auto;
    margin-bottom: 4rem;
  }

  .hero-bottom {
    flex: 0 auto;
  }

  .hero-image-wrap {
    width: 250px;
    height: 250px;
  }

  .heading-h1 {
    text-align: center;
    letter-spacing: 2px;
    margin-top: 18px;
    margin-bottom: 7px;
    font-size: 2.6rem;
  }

  .buttons-wrapper {
    flex-flow: column;
    width: 100%;
    margin-top: .7rem;
    margin-bottom: .5rem;
  }

  .text-main {
    letter-spacing: 1px;
    font-size: 1.3rem;
  }

  .body {
    background-image: url('../images/flag-united-states-america_Compressed.png');
    background-position: 0 0;
    background-size: auto;
    height: 100%;
  }
}


