* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #042821;
  color: #ffffff;
  font-family: "Telegraf", Arial, sans-serif;
  font-weight: 300;
}

.container {
  max-width: 850px;
  padding: 0 24px;
  margin: 178px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: -10;
}

.btn {
  border-radius: 100px;
  background: #ff9650;
  display: flex;
  padding: 15px 30px;
  align-items: center;
  justify-content: center;
  width: 235px;
  color: #000000;
  margin-top: 40px;
  text-decoration: none;
  z-index: 10;
  font-weight: 400;
}

h1 {
  text-align: center;
  font-size: 92px;
  font-style: normal;
  font-weight: 300;
  line-height: 105%; /* 96.6px */
  letter-spacing: -1.84px;
  margin-top: 48px;
}

h2 {
  color: #ff9650;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 64px */
  letter-spacing: -0.4px;
}

p {
  color: var(--colors-white, #fff);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 32px */
  margin-top: 40px;
  max-width: 850px;
}

.svg-container {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: -10;
}

@font-face {
  font-family: "Telegraf";
  src: url("https://cdn.amdax.com/fonts/PPTelegraf-Regular.ttf"),
    url("https://cdn.amdax.com/fonts/PPTelegraf-Regular.woff") format("woff"),
    url("https://cdn.amdax.com/fonts/PPTelegraf-Regular.woff2") format("woff2"),
    format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Telegraf";
  src: url("https://cdn.amdax.com/fonts/PPTelegraf-Light.ttf"),
    url("https://cdn.amdax.com/fonts/PPTelegraf-Light.woff") format("woff"),
    url("https://cdn.amdax.com/fonts/PPTelegraf-Light.woff2") format("woff2"),
    format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@media (max-width: 500px) {
  .container {
    margin: 104px auto;
  }

  h1 {
    font-size: 40px;
    margin-top: 24px;
  }

  h2 {
    font-size: 16px;
  }

  p {
    font-size: 16px;
    margin-top: 24px;
  }

  .btn {
    padding: 12px 0;
    font-size: 16px;
    margin-top: 24px;
  }

  .svg-container {
    position: fixed;
    bottom: -150px;
    right: -150px;
    z-index: -100;
  }
}
