@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }

body {
  box-sizing: border-box;
  height: 100vh;
  width: 100%;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  background: url("/img/body_bg_image.svg") no-repeat center;
  background-size: cover; }

.test_net_hint {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ed8e00;
  padding: 0.8rem 0; }
  .test_net_hint__message {
    color: #fff;
    font-size: 1.4rem;
    line-height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    @media only screen and (max-width: 50rem) {
      .test_net_hint__message {
        flex-direction: column; } }
  .test_net_hint__link {
    color: #fff;
    position: relative; }
    .test_net_hint__link:after {
      content: "";
      position: absolute;
      right: -1.3rem;
      top: 3px;
      width: 1.6rem;
      height: 1.6rem;
      display: inline-block;
      background: url("/img/shape-right.svg") no-repeat center; }

.page_promo {
  margin-top: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem; }
  .page_promo__logo {
    width: 100%;
    max-width: 31.6rem;
    aspect-ratio: 316 / 82;
    background: url("/img/project_logo.svg") no-repeat center;
    background-size: cover; }
  .page_promo__text {
    max-width: 55.5rem;
    margin-top: 3.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.4rem; }
  .page_promo__btn {
    margin-top: 2.4rem;
    cursor: pointer;
    display: flex;
    width: 234px;
    height: 48px;
    background: #ed8e00;
    border-radius: 2px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    text-decoration: none; }

.footer {
  margin-top: auto;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff; }
  .footer__left-label {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #828392; }
  .footer__left-value {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #141316;
    text-decoration: none; }
  .footer .icon {
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    background: transparent no-repeat center;
    background-size: cover;
    cursor: pointer; }
  .footer .twitter {
    background-image: url("/img/twitter_icon.svg");
    margin-right: 1.8rem; }
  .footer .discord {
    background-image: url("/img/discord_icon.svg"); }
