html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: 'Titillium Web', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  padding: 2rem;
  max-width: 600px;
  flex: 1;
}

.logo {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

.brand {
  font-size: 2.5rem;
  margin: 0.5rem 0;
  font-weight: bold;
  color: #112a45;
}

.highlight {
  color: #627887;
}

p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #444;
}

a {
  color: #112a45;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

#home {
  height: 100vh; /* take up full screen height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}




/* --- Top Nav --- */
.top-nav {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: transparent; 
  border-bottom: 1px solid rgba(0,0,0,.08);
  position: fixed;
  top: 0;
  z-index: 100;
  box-sizing: border-box;
  font-family: inherit;
}

.nav-inner {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #112a45;
  font-family: inherit;
  line-height: 1;
}

.nav-logo {
  height: 32px;
  margin-right: 0.5rem;
}


.top-nav nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;                /* space between links */
  font-family: inherit;
}

.top-nav nav ul li a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #627887;
  transition: color 0.2s ease;
}

.top-nav nav ul li a:hover,
.top-nav nav ul li a:focus {
  color: #3b82f6;
  outline: none;
}

/* Mobile collapse */
@media (max-width: 480px) {
  .nav-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
  .top-nav nav ul {
    gap: 1rem;
  }
}


/* Footer */
footer {
  width: 100%;
  border-top: 1px solid rgba(0,0,0,.08);
  background-color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-family: inherit;
}
footer a {
  color: #112a45;
  text-decoration: underline;
}