:root {
  --black: #079aa4;
  --logo: transparent;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

p {
  color: #fff;
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  position: static;
}

.section.header {
  padding-top: 0;
  padding-bottom: 0;
}

.container {
  flex-direction: column;
  max-width: 600px;
  min-height: 100vh;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.body {
  border-top: 0px solid var(--black);
  color: #fff;
  background-color: #1a1a1a;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.description {
  color: #fff;
}

.description h2 {
  color: #e1e1e1;
  margin-top: 31px;
  margin-bottom: 22px;
  padding-bottom: 0;
  font-size: 24px;
  font-weight: 700;
}

.description a {
  color: #03ff75;
  -webkit-text-stroke-color: #00ff75;
  text-decoration: underline;
}

.section-2 {
  flex: 1;
}

.footer {
  color: #504a40;
  text-align: center;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 14px;
  font-weight: 400;
}

.footer a {
  color: #e1e1e1;
  font-weight: 500;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.div-block {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 48px;
}

.link {
  color: #03ff75;
  padding-left: 16px;
}

.button {
  color: #000;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background-color: #03ff75;
  border-radius: 13px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

@media screen and (max-width: 479px) {
  .container {
    margin-left: 0;
    margin-right: 0;
  }

  .description {
    font-size: 15px;
  }
}


