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

html, body {
  height: 100%;
  width: 100%;
  background-color: #011c18;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 500px;
  padding: 20px;
}

.logo-container > img {
  width: 100%;
  height: auto;
  max-width: 100px;
}

.invite-button {
  background-color: #00f0c8;
  color: black;
  font-weight: 500;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}

.invite-button:hover {
  background-color: #00dab4;
}

.buttons-container {
  background-color: #023a32;
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
  width: 100%;
  max-width: 400px;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #00f0c8;
  font-weight: 600;
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 2px solid #00f0c8;
  margin: 0 10px;
}

.qrcode-container {
  display: none;
  background-color: #012e28;
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.qrcode-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.share-icon {
  font-size: 20px;
}

.share-text {
  color: #00f0c8;
  font-size: 18px;
  font-weight: 600;
}

.qrcode-subtitle {
  color: #a8b5b3;
  font-size: 14px;
  margin-bottom: 20px;
}

.qrcode-image {
  display: inline-block;
  margin: 20px 0;
}

.qrcode-footer {
  color: #5a6b68;
  font-size: 12px;
  font-weight: 500;
  margin-top: 20px;
  letter-spacing: 0.5px;
}

.redirect-paragraph {
  font-size: 18px;
  color: white;
  padding: 20px;
  padding-top:0px;
}

@media (max-width: 400px) {
  .invite-button {
    font-size: 20px;
    padding: 18px;
  }
}

.download-button {
  background-color: white;
  color: black;
  font-weight: 500;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}

.download-button:hover {
  background-color: #e6e6e6;
}


.download-paragraph{  
  margin-top:20px
}