.body {
  max-height: 100%;
  max-width: 100%;
  color: #655a40;
  background-color: #fbcfaf;
  justify-content: center;
  align-items: center;
  font-family: Montserrat, sans-serif;
  display: flex;
}

.social-link {
  margin-bottom: 8px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.link {
  color: #655a40;
  font-weight: 600;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.h1 {
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 400;
}

.heading {
  margin-top: 32px;
  font-weight: 300;
  line-height: 24px;
}

.heading._2 {
  margin-top: 0;
  font-weight: 400;
  line-height: 36px;
}

.container {
  max-height: 100%;
  max-width: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo {
  max-width: 360px;
}

.div-block-2 {
  margin-bottom: 24px;
}

.div-block-3 {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .body {
    align-items: flex-start;
    padding-top: 24px;
  }

  .social-link {
    justify-content: center;
  }

  .div-block {
    text-align: center;
    margin-top: 24px;
  }

  .container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
  }
}


