.body {
  background-color: #2b2d2f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Montserrat, sans-serif;
  display: flex;
}

.div-block {
  flex-direction: column;
  align-items: center;
  width: 70%;
  height: auto;
  margin: 75px 15% 125px;
  display: flex;
}

.logo {
  width: 75%;
  margin-bottom: 30px;
}

.link-button {
  color: #d9ab5d;
  background-color: #0000;
  border: 3px solid #d9ab5d;
  border-radius: 5px;
  margin-top: 35px;
  padding: 12px 45px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.paragraph {
  text-align: center;
}

.paragraph.watermark {
  color: #fff;
  text-align: center;
  width: 100%;
  margin-left: 10px;
  font-size: 12px;
  line-height: 16px;
}

.link {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .logo {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .div-block {
    margin: 50px 10% 80px;
  }

  .logo {
    width: 100%;
  }

  .link-button {
    text-align: center;
    padding: 9px 20px;
    font-size: 15px;
    line-height: 21px;
  }
}


