body {
  margin: 0;
  font-family: "Anton SC", sans-serif;
  text-align: center;
  background-color: #f5f5f5;
}

.banner {
  background-image: url('banner6.png');
  background-size: cover;
  background-position: center;
  padding: 150px 20px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.banner h1 {
  font-size: 5.5em;
  margin: 0;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 30px; /* space between buttons */
  margin: 40px 0;
}

.store-button {
  display: inline-block;
  margin: 10px;
  padding: 15px 30px;
  font-size: 1.2em;
  color: white;
  background-color: #007BFF;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.store-button:hover {
  background-color: #0056b3;
}

.store-button.disabled {
  background-color: #aaa;
  pointer-events: none;
}
body {
  background-color: #0B164D;
}

.subheader {
  font-size: 1.5em;
  margin-top: 20px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.sub-image {
  margin-top: 20px;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}
.store-button {
  display: inline-block;
  margin: 10px;
  padding: 0;
  border: none;
  background: none;
}

.store-icon {
  width: 160px; /* adjust as needed */
  height: auto;
margin: 0 75px;
  transition: transform 0.3s ease;
}

.store-button:hover .store-icon {
  transform: scale(1.05);
}

.store-button.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

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

.store-label {
  margin-top: 10px;
  font-size: 1em;
  color: white;
}.site-footer {
  background-color: #005368;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 10px;
}

.copyright {
  font-size: 0.9em;
  margin: 0;
}


