* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', sans-serif;
  background-image: url("https://i.imgur.com/6rjskGl.jpeg");
  box-shadow: rgba(17,17,17,0.05) 0 0 0 1000px inset;
  color: #eee;
}

.container {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.heading {
  color: #eee;
  font-size: 3rem;
  font-weight: bold;
  text-shadow:
    2px 2px 2px #000,
    2px 2px 2px #000,
    2px 2px 2px #000;
  background: rgba(0, 0, 0, 0.9);
  padding: 1rem;
  margin-bottom: 2rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .heading {
    font-size: 1.5rem;
  }
}

.content {
  background: rgba(255, 255, 255, 0.99);
  color: #111;
  padding: 1.5rem;
  border-radius: 6px;
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: center;
}

.content p {
  font-size: 1.25rem;
  text-align: justify;
  margin: 0 auto;
  max-width: 600px; /* Optional: keeps it from stretching too wide */
}

.link-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  text-align: center; /* Center the list */
}

.link-list li {
  margin: 0.5rem 0;
}

.link-list a {
  color: #3C3B6E; /* Old Glory Blue */
  text-decoration: none;
  font-weight: bold;
}

.link-list a:hover {
  text-decoration: underline;
}

.cta-button {
  display: inline-block;
  background-color: #002868; /* Old Glory Blue */
  color: white;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  margin: 2rem auto 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}



/* Responsive Adjustments */
@media (min-width: 600px) {
  .heading {
    font-size: 4rem;
  }

  .content {
    font-size: 1.1rem;
  }
}
