@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap");
html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  background: #fafafa;
}

.container-fluid {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100vh;
}

header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 120px;
}
header .logo {
  margin-top: 20px;
  margin-left: 30px;
}
header .bg {
  position: absolute;
  right: 0;
}

main {
  text-align: center;
}
main .title {
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 125%;
  margin-bottom: 36px;
}
main .subtitle {
  max-width: 862px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 36px;
}
main .subtitle h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 4px;
}
main .connected-msg {
  display: none;
}
main .connect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 20px;
  max-width: 530px;
  width: 100%;
  height: 56px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow:
    0px 6px 12px -6px rgba(24, 39, 75, 0.12),
    0px 8px 24px -4px rgba(24, 39, 75, 0.08);
  box-shadow:
    0px 6px 12px -6px rgba(24, 39, 75, 0.12),
    0px 8px 24px -4px rgba(24, 39, 75, 0.08);
  border-radius: 8px;
  margin: 0 auto 36px;
}
main .connect span {
  max-width: 8px;
  min-height: 8px;
  min-height: 8px;
  max-height: 8px;
  background: #b5f5f4;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
}
main .connect span::before,
main .connect span::after {
  content: "";
  position: absolute;
  background: #1ed6d3;
  left: -1px;
  opacity: 0;
  right: -1px;
  top: -1px;
  bottom: -1px;
  border-radius: 50%;
  -webkit-animation: pulse 2s linear infinite;
  animation: pulse 2s linear infinite;
}
main .connect span::after {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
main .connect .link {
  margin-right: auto;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 150%;
  /* identical to box height, or 24px */
  letter-spacing: -0.01em;
}
main .connect .connection-status {
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 150%;
  /* identical to box height, or 18px */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #979797;
}
main .connect .connected {
  display: none;
  color: green;
}
main .connect .not-connected {
  color: red;
}
main .help {
  color: #6f7178;
}
main .help h3 {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 150%;
  /* or 24px */
  text-align: center;
  letter-spacing: -0.01em;
  /* UI / Icon Apple */
}
main .help p {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  /* or 24px */
  text-align: center;
  letter-spacing: -0.01em;
  /* UI / Icon Apple */
}
main .help p a {
  color: #1ed6d3;
}

@media (max-width: 800px) {
  main .title {
    font-size: 24px;
  }

  main .subtitle h2 {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  .container {
    padding: 0 16px;
  }

  header .bg {
    display: none;
  }

  header {
    background-image: url(bg__mob.svg);
    background-repeat: no-repeat;
    background-position: right top;
  }

  header .logo {
    margin-top: 30px;
    margin-left: 16px;
  }

  main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main .title {
    font-size: 20px;
  }

  footer img {
    width: 60%;
  }
}
@media (max-width: 400px) {
  main .subtitle {
    margin-bottom: 20px;
  }

  main .connect {
    padding: 16px 10px;
    margin-bottom: 20px;
  }
  main .connect span {
    margin-right: 12px;
  }
  main .connect .link {
    font-size: 14px;
  }
  main .connect .connection-status {
    font-size: 10px;
  }

  main .help h3 {
    font-size: 14px;
  }

  main .help p {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
