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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a1a2f, #3d3235);
  color: white;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}

.container {
  max-width: 500px;
  padding: 20px;
  height: 90dvh;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  justify-content: space-around;
}

.container--text {
  max-width: 1024px;
}

.logo {
  width: 150px;
  margin: 0 auto 30px;
  display: block;
}

.qr-section {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.qr-block {
  text-align: center;
}

.qr-block > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
  background: white;
  padding: 8px;
  border-radius: 8px;
}

.icon {
  width: 26px;
  vertical-align: middle;
  margin-right: 6px;
}

.links {
  display: flex;
  justify-content: center;
  font-size: 14px;
  gap: 1rem;
  padding-bottom:2rem;
}

.links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.links a:hover {
  opacity: 0.7;
}

h1 {
  margin-bottom: 1rem;
}

p {
  margin-bottom: 0.5rem;
}

.text-block {
  text-align: left;
}
