/* Centered one-column layout */
body {
    width: 80%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color:antiquewhite;
    color: #1a1a1a;
  
}

/* Skip link */
.skip {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
}

.skip:focus {
    top: 0;
}


.logo {
    background-image: url("logo_img.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: -9999px;
    width: 150px;;
    height: 150px;
}

h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h2 {
    color:black;
}

.hidden {
    display: none;
}


nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #3366CC;
}

nav a:hover {
    color: #0f1d4d;
}




table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #333;
    padding: 8px;
    text-align: left;
}

caption {
    font-weight: bold;
    margin-bottom: 10px;
}