 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

nav {
    background-color: #1a1a40;
    padding: 5px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#topfixed-image {
    height: 45px;
    display: block;
}

.content {
    padding: 20px;
    background-color: white;
    margin: 20px auto;
    margin-top: 55px;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    padding: 40px 20px 10px;
    background: linear-gradient(135deg, #00695d, #009688, #00695d);
    color: #fff;
    border-radius: 0 0 15px 15px;
}

h2, h3 {
    color: #0286d3;
}

.year-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    align-items: center;
}

.year-buttons a {
    text-decoration: none;
    background-color: #007BFF;
    color: white;
    padding: 14px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s;
    width: 260px;
    text-align: center;
}

.year-buttons a:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}


  .site-footer {
    background-color: #000; /* Pure Black */
    color: #ccc;
    padding: 30px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .footer-links {
    margin-bottom: 15px;
  }

  .footer-links a {
    color: #aaa;
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-size: 16px;
  }

  .footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 5px #ffffffaa;
  }

  .footer-copy {
    font-size: 14px;
    color: #888;
  }

  /* Responsive tweak (optional) */
  @media (max-width: 600px) {
    .footer-links a {
      display: block;
      margin: 8px 0;
    }
  }
