* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.2px;
}
html {
  color: white;
  background-color: #2c3e50;
}

/* containers */
.master-container {
  background: linear-gradient(#2c3e50, #4b6cb7);
  min-height: 100vh;
}
.container {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  padding: 70px 0;
}

/* logo */
.logo {
  margin-bottom: 16px;
}
.logo img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
}

/* text */
.title {
  font-size: 21px;
  margin-bottom: 12px;
}
.description {
  width: 80%;
  margin: auto;
  margin-bottom: 35px;
}

/* links */
.store-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.store-links a {
  margin: 0 3px;
}
.store-links img {
  width: 255px;
  height: auto;
}

/* socials */
.social-media {
  margin-bottom: 40px;
}
.icons {
  display: flex;
  justify-content: center;
}
.social-icon {
  color: white;
  font-size: 40px;
}
.discord-icon {
  margin-left: 16px;
}
.twitter-icon:hover {
  color: black;
}
.discord-icon:hover {
  color: #7289da;
}
.follow-for-updates {
  margin-bottom: 8px;
  font-size: 16px;
}

/* qr code */
.scan-for-mobile {
  margin-top: 0px;
}
.qr-section {

}
.qr-code img {
  width: 140px;
  height: auto;
}

.announcement {
    text-align: center; /* Centers the text inside the div */
    margin-bottom: 25px;
}

.announcement a {
    text-decoration: none; /* Removes underline from the link */
    color: black; /* Sets the text color */
    background-color: white; /* Sets the background color */
    padding: 20px 30px; /* Adds padding around the text to increase button size */
    border-radius: 40px; /* Rounds the corners of the button */
    display: inline-block; /* Ensures padding and margins are respected */
    font-size: 20px;
}

/* Hide QR code and text on mobile screens */
@media screen and (max-width: 600px) {
  .qr-section {
    display: none;
  }
  .store-links {
    flex-direction: column;
  }
  .store-links img {
    width: 240px;
  }
}

