body, html {
  background: var(--pageBackground);
  color: var(--darkColor);
  height: 100%;
  width: 100%;
  overflow: hidden;
  min-width: 320px
}

#root {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%
}

* {
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  -webkit-tap-highlight-color: #fff0;
  outline: none;
  user-select: none
}

:root {
  --backgroundCode: "radial-gradient(50% 50% at 50% 50%, #F9F9F8 72.08%, #F1F0EF 100%)";
  --darkColor: "#21201C";
  --lightColor: "#FDFDFC";
  --badgeBackground: "#20100010";
  --badgeBorder: "1px solid #1F150019";
  --pageBackground: "#F1F0EF"
}

.background-code {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center
}

.background-code span {
  font-weight: 900;
  font-size: 50vw;
  background: var(--backgroundCode);
  -webkit-background-clip: text;
  background-clip: text;
  color: #fff0
}

.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 300ms ease all;
  padding: 0 12px;
  z-index: 1;
  gap: 40px
}

.container-text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.container-text-description {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 10px
}

h1 {
  font-weight: 800;
  font-size: 80px;
  line-height: 88px;
  text-align: center;
  vertical-align: middle;
  margin: 0;
  padding: 0
}

h2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  vertical-align: middle;
  margin: 0;
  padding: 0
}

.container-text-description-badge {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  border-radius: 8px;
  padding: 4px 8px;
  border: var(--badgeBorder);
  background: var(--badgeBackground);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-align: center
}

button {
  width: fit-content;
  position: relative;
  display: flex;
  height: 48px;
  padding: 8px 16px;
  border-radius: 14px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 200ms ease all;
  align-items: center;
  justify-content: center;
  color: var(--lightColor);
  background: var(--darkColor);
  gap: 10px
}

button:hover {
  opacity: .85
}

button:active {
  transform: scale(.97)
}

@media screen and (max-width: 870px) {
  button {
    position: fixed;
    bottom: 12px;
    left: 12px;
    height: 52px;
    width: calc(100% - 24px)
  }

  .background-code {
    transform: translateY(-130px)
  }

  h1 {
    font-size: 40px;
    line-height: 44px;
    text-align: left
  }

  h2 {
    font-size: 14px
  }
}