/* General reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Calibri', Arial, sans-serif;
    background-color: #ffffff;
  }
  
  /* Navigation Menu */
  .navbar {
    background-color: white; /* White background */
    padding: 10px 20px;
    position: sticky; /* Sticks to the top when scrolling */
    top: 0;
    z-index: 1000;
  }
  
  .nav-list {
    display: flex;
    justify-content: flex-start; /* Align items to the left */
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-list li {
    margin-right: 20px; /* Space between menu items */
  }
  
  .nav-list a {
    color: #333; /* Dark text color */
    text-decoration: none; /* Remove underline */
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-list a:hover {
    color: #ff9800; /* Highlight color on hover */
  }
  
  /* Main Content */
  .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute content evenly */
    text-align: center;
    padding: 10px;
    height: calc(100vh - 60px); /* Full viewport height minus navbar height */
    box-sizing: border-box;
  }
  
  /* Title Styling */
  .title {
    font-size: 2rem; /* Slightly smaller font size */
    color: #333333;
    margin-bottom: 10px;
  }
  
  .highlight {
    color: #ffd700; /* Bright yellow for LATEST */
    font-weight: bold;
  }
  
  /* Image Container */
  .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1; /* Adjust to fill remaining space */
    max-height: 50%; /* Limit image height */
    box-sizing: border-box;
  }
  
  .timeline-image {
    max-width: 120%; /* Keep the image responsive */
    max-height: 120%;
    object-fit: contain; /* Preserve aspect ratio */
  }
  