.banner {
    align-items: center;
    text-align: center;
    justify-content: center;
    display: flex;
    /* border-bottom: 3px solid #000; */
    /*padding: 20px;*/
}
.banner h1 {
    margin: 0;
    font-size: 2rem;
}
.banner p {
    margin: 5px 0 0;
    font-size: 1rem;
}

body {
    padding: 20px 0;
    font-family: "MS Gothic" ;
    background: linear-gradient(180deg, #65b5ff, #0d4e96);

}
.banner-logo {
    max-width: 150px;  /* Adjust logo size */
    max-height: 100%;
    
}
.page-wrapper {
    width: 800px;
    margin: 0 auto;
    background: #0066CC;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

a {
  color: #0a3d7e;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #072d5e;
}

.footer {
    align-items: center;
    text-align: center;
    justify-content: center;
    display: flex;
    /* border-bottom: 3px solid #000; */
    /*padding: 20px;*/
    clear: both;
    color: white;
}



.nav-buttons .btn {
    display: block;
    padding: 10px;
    text-decoration: none;
    background: #0a3d7e;
    color: white;
    text-align: center;

    transition: background 0.2s, transform 0.1s;
}
.nav-buttons .btn:hover {
    background: #d6e7ff;
    transform: translateX(4px);
    color: black;
}


.navigationcontent {
    float: left;
    animation: fadeIn 0.6 ease-in-out;
    align-items: start;
    width: 150px;
    padding: 0px;
    /*border: 2px solid black;*/
}
.pagecontent {
    float: right;
    width: 600px;
    /*border: 2px solid black;*/
    background: #fff;
    align-items: end;
    animation: fadeIn 0.6 ease-in-out;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.main-area {
    display: flex;
    gap: 25px;
    margin-top: 0px;
}

.content {
    flex: 1;
}

.title {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
}
.bigtitle {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 30px;
    margin-top: 25px;
    margin-bottom: 10px;
}

@font-face {
  font-family: 'MS Gothic';
  src: url('MSGOTHIC.TTF') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MS Mincho';
  src: url('MSMINCHO.TTF') format('woff2');
  font-weight: normal;
  font-style: normal;
}

.citation {
    font-family: "MS Mincho";
    color: black;
    padding: 20px 20px;
}

.text {
    color: black;
    padding: 20px 20px;
    font-family: "Ms Gothic";
    line-height: 1.6;
}

.centererror {
    text-align: center;
    color: #fff;
    font-size: 60px;
}

header {
  background-color: #0a3d7e;
  color: white;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

h1 { font-size: 2.2rem; font-weight: 700; }
h2 { font-size: 1.4rem; font-weight: 600; margin-top: 30px; }
p  { font-size: 1rem; line-height: 1.6; }
blockquote {
  font-style: italic;
  color: #3f5c7a;
  border-left: 3px solid #a7cfff;
  padding-left: 15px;
  margin: 20px 0;
}

.fade-in {
  animation: fade 0.7s ease forwards;
  opacity: 0;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

hr {
  border: none;
  height: 5px;
  background: linear-gradient(to right, #0066CC, transparent);
}

@media (max-width: 800px) {
  .sidebar {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .layout {
    flex-direction: column;
  }
}