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

body {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  background-color: #0d47a1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header {
  padding: 20px;
  text-align: center;
}

.logo {
  max-height: 80px;
  height: auto;
  width: auto;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.content h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content .blurb {
  font-size: 1.6rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  color: #0d47a1;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-btn {
  background-color: #ffffff;
}

.join-btn {
  background-color: #ffeb3b;
}

.visit-btn {
  background-color: #4CAF50;
  color: #ffffff;
}

.btn:hover {
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.2);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.social-logo {
  width: 30px;
  height: auto;
}
