@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans:300,400,700,800|Raleway:100,200,600');

body {
  font-size: 62.5%;
  background: #0064dc;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.grid-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align items horizontally */
  justify-content: center; /* Center align items vertically if needed */
  padding: 50px;
  margin: 0 auto;
  max-width: 90%;
  text-align: center;
}

.landing-page--header-border {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 6px;
  color: #fff;
  display: inline-block; /* To make sure the content adjusts to its width */
  position: relative; /* For positioning animation effects */
  text-align: center; /* Center text inside */
}

.landing-page--subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 100;
  line-height: 1.8rem;
  letter-spacing: 1px;
  color: #fff;
  margin: 30px 0 0 0; /* Margin above the subtitle */
}

.landing-page--subtitle strong {
  font-weight: 600;
}

.landing-page--button-wrapper {
  margin-top: 50px; /* Margin above the button */
}

.landing-page--button {
  text-decoration: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 1.2rem;
  border-style: solid;
  border-width: 1px 0;
  border-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  transition: all 0.45s;
  display: inline-block;
}

.landing-page--button:hover {
  border-color: rgba(255, 255, 255, 1);
  letter-spacing: 5.5px;
}

img {
  max-width: 100%;
  height: auto;
}

/* QR Code Styles */
.qr-code-wrapper {
  margin-top: 50px; /* Margin to match button spacing */
}

.qr-code {
  max-width: 200px;
  height: auto;
}

/* Media Queries */
@media (max-width: 768px) {
  .grid-container {
    padding: 30px;
  }
  
  .landing-page--subtitle {
    font-size: 1.2rem;
  }
  
  .landing-page--button-wrapper {
    margin-top: 30px;
  }

  .landing-page--button {
    font-size: 1rem;
    padding: 8px;
  }

  .qr-code {
    max-width: 150px;
  }

  .qr-code-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .landing-page--subtitle {
    font-size: 1rem;
  }
  
  .landing-page--button {
    font-size: 0.8rem;
    padding: 6px;
  }

  .qr-code {
    max-width: 120px;
  }

  .qr-code-wrapper {
    margin-top: 20px;
  }
}
