body {
  margin: 0;
  padding: 0;
  background-color: #1e1e1e;
  display: flex;
  flex-direction: column;
  align-items: center;
}

* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  width: 100%;
}

.header {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 0 16px;
  padding-top: 24px;
  align-items: center;
  gap: 16px;
}

.header img {
  max-height: 50px;
}

.header-title {
  font-size: 24px;
  color: white;
  line-height: 24px;
}

.phone-screens {
  max-width: 100%;
}

.hint {
  background-color: #f4de0d;
  padding: 14px 20px;
  width: fit-content;
  font-size: 24px;
  border-radius: 0 12px 12px 0;
}

.qr-code-block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.qr-code {
  background-color: #d9d9d9;
  width: 236px;
  height: 236px;
}

.qr-code img {
  width: 100%;
  height: 100%;
}

.store-buttons-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 40px 16px;
  justify-content: center;
}

.store-button {
  height: 60px;
  width: 100%;
  border: 1px solid #ffffff;
  color: white;
  background-color: transparent;
  border-radius: 6px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.or-text {
  color: gray;
  font-size: 15px;
}

.link {
  width: 100%;
  text-decoration: none;
}