/**,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 3px solid lime;
}*/

:root {
    interpolate-size: allow-keywords;
}

html {
    background:
        linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
        url("../img/barnwood-red.jpg");
    background-size: cover;
    color: #000; /* Text remains 100% solid */
}

body {
    padding-top: 20px;
    max-width: 2000px;
    margin: 0; /* Center the main content */
    line-height: 1.2;
    /*border-radius: 8px;*/
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
}
.banner {
    color: lightgray;
    text-align: center;
    font-size: 4lvw;
    font-weight: 900;
    font-stretch: expanded;
    padding-top: 0.25rem;
    padding-bottom: 1.1vw;
}

a {
    color:lightgray;
    text-decoration: none;
}

a:hover {
    color: red;
    outline: 2px solid red;
}

a:focus-visable {
    outline: 3px solid white;
    outline-offset: 2px;
}

a:visited {
    color:darkyellow;
}

.masthead {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 12vw;
    background-color: darkgreen;
    color: white;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /*gap: 0.5rem;*/
    align-items: center;
    /*padding: 0 10px;*/
    box-sizing: border-box;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);*/
    z-index: 1000;
}

.masthead h1 {
    margin: 0 auto;
    font-size: 5vw;
}

h1 {
    margin: 0 auto;
    font-size: 4vw;
    text-align: center;
}

.Navigation {
    display: flex;
    flex-direction: row;
    gap: 5vw;
    margin: 0;
    padding: 0;
    color: lightgray;
    font-family: system-ui, sans-serif;
    font-size: 2vw;
    font-weight: 700;
    text-decoration: none;
    list-style: none;
}

.Navigation li {
    flex-grow: 1;
    flex-shrink: 1;
}

.container {
    height: 1200px; /* Create a lot of content to force scrolling */
    margin-top: 30px;
    padding: 20px;
    /*border-radius: 5px;*/
    color: #333;
}

.responsive {
    width: 100%;
    height: auto;
}

figure {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

figcaption {
    font-size: 0.1rem;
}

article {
    font-size: clamp(1em, 2vw, 3em);
    margin-top 3rem;
    margin-left: 6;
    color: black;
    font-weight: 900;
    padding-bottom: 3rem;;
}

table {
    font-size: 2vw;
    font-weight: 700;
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
}

/*summary {
    list-style-position: outside;
}

summary::marker {
    font-size: 0.9rem;
    color: gray;
}

details li {
    padding-block: 0.5rem;
    display: block;
    font-weight: 600;
}

.rules li {
    padding-bottom: 1ch;
    font-weight: 600;
}*/

footer {
    padding-top: 4rem;
    font-size: 2vw;
    font-weight: 600;
    text-align: center;
}
