body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  background: url('./../static/images/homepage_banner_v3.png') center/cover no-repeat;
  font-family: sans-serif;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  width: calc(100% - 60px);
  margin: 20px 30px 2rem;
  min-height: 3rem;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border-radius: 20px;
  box-shadow: 0 0 var(--shadow-blur) var(--shadow-spread) var(--shadow-color);
}

nav.navbar {
  width: 100%;
  position: relative;
  z-index: 1;
}

nav.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

nav.navbar ul li {
  text-align: center;
}

nav.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: text-shadow 0.3s ease;
}

main {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 1rem;
  box-sizing: border-box;
}

.spacer {
  flex-grow: 1;
}

.title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: white;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem;
}

.links {
  width: 100%;
}

.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.links li {
  width: 100%;
  max-width: 800px;
}

.content-box {
  width: 100%;
  min-height: 160px;
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.links li a {
  text-decoration: none;
  color: white;
  display: block;
}

.content-box-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.content-box-content {
  font-size: 1rem;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .glass-effect::after {
    filter: none;
  }
}