```css/* =========================================================
   WICKET GATE ANNUAL INDEX
   Modern HTML5 CSS
   ========================================================= */

/* -------------------------
   Basic reset
   ------------------------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* -------------------------
   Page
   ------------------------- */

body {
    width: 100%;
    min-height: 100vh;
    background-color: #fffff0;
    color: #000;
    font-family: "Times New Roman", Times, serif;
}


/* -------------------------
   Main page wrapper
   ------------------------- */

#body_wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
}


/* -------------------------
   Main heading
   ------------------------- */

#body_header {
    width: 100%;
    text-align: center;
}

#body_header h1 {
    text-align: center;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: blue;
    line-height: 1.3;
}


/* -------------------------
   Index navigation
   ------------------------- */

.index-nav {
    width: 100%;
    margin: 15px auto 30px;
    padding: 0 10px;
    text-align: center;
    line-height: 1.5;
}

.index-nav a {
    display: inline-block;
    margin: 5px 10px;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: blue;
    text-decoration: none;
}

.index-nav a:hover {
    text-decoration: underline;
}


/* -------------------------
   Main content

   IMPORTANT:
   This is deliberately NOT
   a flex or WebKit box.
   ------------------------- */

#new_div {
    width: 100%;
    display: block;
}


/* -------------------------
   Index category headings
   ------------------------- */

#new_div h2 {
    width: 100%;
    margin: 25px 0 15px;
    text-align: center;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
    color: blue;
}


/* -------------------------
   Article entries
   ------------------------- */

#new_div p {
    width: 100%;
    margin: 0 0 15px;
    font-family: "Times New Roman", Times, serif;
    font-size: 21px;
    line-height: 1.45;
}


/* Article titles */

#new_div p strong a {
    color: blue;
    text-decoration: none;
}

#new_div p strong a:hover {
    text-decoration: underline;
}


/* -------------------------
   Images
   ------------------------- */

img {
    max-width: 100%;
    height: auto;
}

.displayed {
    display: block;
    width: 219px;
    height: 239px;
    max-width: 100%;
    margin: 10px auto;
}


/* -------------------------
   Emphasise 2025 and 2026
   ------------------------- */

.index-nav a[href*="2025"],
.index-nav a[href*="2026"] {
    font-size: 26px;
}


/* -------------------------
   Smaller screens
   ------------------------- */

@media screen and (max-width: 700px) {

    #body_wrapper {
        margin: 10px auto;
    }

    #body_header h1 {
        font-size: 28px;
    }

    .index-nav {
        padding: 0 5px;
    }

    .index-nav a {
        margin: 5px 7px;
        font-size: 22px;
    }

    .index-nav a[href*="2025"],
    .index-nav a[href*="2026"] {
        font-size: 26px;
    }

    #new_div {
        width: 100%;
    }

    #new_div p {
        font-size: 19px;
    }

    #new_div h2 {
        font-size: 22px;
    }
}


/* -------------------------
   Mobile phones
   ------------------------- */

@media screen and (max-width: 450px) {

    #body_wrapper {
        margin: 5px auto;
    }

    #body_header h1 {
        font-size: 24px;
    }

    .index-nav {
        padding: 0;
    }

    .index-nav a {
        margin: 4px 5px;
        font-size: 19px;
    }

    .index-nav a[href*="2025"],
    .index-nav a[href*="2026"] {
        font-size: 23px;
    }

    #new_div p {
        font-size: 18px;
        line-height: 1.4;
    }

    #new_div h2 {
        font-size: 21px;
    }
.index-footer {
    margin: 40px auto 0 auto;
    padding-top: 15px;
    border-top: 1px solid #ccc;
    text-align: center !important;
    width: 100%;
}
}
}
}
```
