body { font-family: 'Merriweather', serif; line-height: 1.6; margin: 0; padding: 0; background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/static/images/bg.webp'); background-size: cover; background-position: center; background-attachment: fixed; color: #333; min-height: 100vh; display: flex; flex-direction: column; } nav { background: rgba(245, 245, 245, 0.95); /* Replaced white with light gray */ padding: 1rem 2rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); position: fixed; width: 100%; top: 0; z-index: 1000; box-sizing: border-box; display: flex; justify-content: space-between; align-items: center; } .nav-links { display: flex; gap: 2rem; align-items: center; } .nav-links a { color: #333; text-decoration: none; font-weight: 500; transition: color 0.3s; } .nav-links a:hover { color: #2c5282; } .site-title { font-size: 1.5rem; font-weight: 700; color: #2d3748; margin: 0; position: relative; display: inline-block; } .inactive { color: #999 !important; pointer-events: none !important; cursor: default !important; } .site-title::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background: #2c5282; transform: scaleX(0); animation: underline 1s ease-out forwards; animation-delay: 0.5s; } .main-content { width: 80%; margin: 6rem auto 2rem; padding: 2rem; background: rgba(245, 245, 245, 0.95); /* Replaced white with light gray */ border-radius: 15px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); flex: 1; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes underline { to { transform: scaleX(1); } }