

body {
    margin: 60px auto;
    max-width: 800px;
    padding: 0 20px;
    background-color: #fff;   
    color: #111;              
    line-height: 1.8;
    font-size: 18px;
    font-family: "Altone", sans-serif;
}

/* Headline */
h1 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    letter-spacing: 0.5px;
}


h2{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    letter-spacing: 0.5px;
}
.meta {
    font-family: "Altone", Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    padding: 6px 0;
    margin-bottom: 30px;
    font-size: 15px;
    color: #555;
}

.article-body {
    text-align: left;
    font-size: 14px;
    line-height: 1.9;
}

.left-article, .right-article {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 40px 0;
}

.left-article {
    flex-direction: row;
}

.right-article {
    flex-direction: row-reverse;
}

.left-article,
.right-article {
    display: flex;
    align-items: stretch; 
    gap: 30px;
    margin: 40px 0;
}

.italicpara{
    font-style: italic;
    text-align: left;
    font-size: 18px;
    line-height: 1.9;
}

.image-container img,
.left-image-container img,
.right-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.right-image-container,
.left-image-container {
    display: flex;
}

.image-container img:hover,
.left-image-container img:hover,
.right-image-container img:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}



@media (max-width: 600px) {
    h1 {
        font-size: 24px;
    }

    h2{
        font-size: 18px;
    }

    .article-body {
        text-align: left;
        font-size: 12px;
        line-height: 1.9;
    }

    .meta {
        flex-direction: column;
        text-align: center;
    }

    .left-article, .right-article {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin: 30px 0;
    }

    .image-container img,
    .left-image-container img,
    .right-image-container img {
        width: 100%;
    }
}


#Taskbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;  
    position: fixed;    
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0); /* transparent until scroll */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  #Taskbar-container .logo-link {
    margin-right: auto; 
  }
  
  #Taskbar-container .logo {
    height: 50px; 
    width: auto;
    transition: opacity 0.3s ease;
  }
  
  #Taskbar-container .logo:hover {
    opacity: 0.8;
  }
  
  #Taskbar-container a {
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.2em;
    font-family: 'Inter', sans-serif;
    color: black;
    transition: color 0.3s ease;
  }
  
  /* Hover */
  #Taskbar-container a:hover {
    color: #170B3B;
  }
  
  /* Light mode overrides */
  body.light-mode #Taskbar-container a {
    color: black;
  }
  
  body.light-mode #Taskbar-container a:hover {
    color: #51289C;
  }
  



  body.light-mode {
    background-color: white; /* Light mode background */
    color: black; /* Light mode text */
  }
  
  #Taskbar-container a {
    color: white; /* Default dark mode text for links */
  }
  
  body.light-mode #Taskbar-container a {
    color: black; /* Light mode text for links */
  }
  
  #Taskbar-container a:hover {
    color: #170B3B; /* Hover effect for both modes */
  }

  /* dark/light mode*/
.change-mode {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 2; /* Make sure it's on top of other elements */
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
  }
  
  
  .change-mode:hover {
    background-color: #3700b3; /* Darker shade on hover */
    transform: scale(1.05); 
  }

  .header-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .header-link:hover {
    color: #4B0082; 
  }
  
  body.light-mode .header-link {
    color: black;
  }
  
  body.light-mode .header-link:hover {
    color: #51289C;
  }
  