body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11pt;
    padding: 3vw;
    margin-left: 5%;
    margin-right: 5%;
}
header {
    border-bottom: 1px solid brown;
}
header h1 {
    font-size: clamp(2rem, 2.5vw, 4rem);
    text-align: center;
    color: darkred;
    text-wrap: balance;
}
header > a {
        text-decoration: none;
}
footer {
    border-top: 1px solid brown;
    color: brown;
    text-align: center;
    font-style: italic;
}
header p {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(1rem, 1.5vw, 3rem);
    font-style: italic;
    text-align: center;
}
h1 {
    font-size: clamp(2rem, 2.2vw, 3rem);
    text-align: center;
}
p.quote {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: larger;
    text-align: center;
    margin-left: 10%;
    margin-right: 10%
}
ul {
    margin-left: 0;
    padding: 0;
}
figure {
    padding: 2vw;
    margin-left: auto; 
    margin-right: auto;
}
img {
    width: 80vw;
}
img.hero-image {
    display: block;
    padding: 1vw;
    margin-left: auto;
    margin-right: auto;
}
div.desktop-only {
    display: none;
}
div.mobile-only {
    display: block;
}
ul#menu {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
}
table, tr {
    border: 1px solid gray;
}
thead, h3.region {
    color: white;
    background-color: cornflowerblue;
    font-size: larger;
    padding: 10px;
}
tr:nth-child(even) {
    /* color: white; */
    background-color: lightgray;
}
td {
    padding: 0.5vw;
}
.video-container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
}


/* Desktop styles (1024px and up) */
@media screen and (min-width: 1024px) {
    body {
        margin-left: 5%;
        margin-right: 5%;
        font-size: 1.3vw;
    }
    section#twocharts, section#vid {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    img {
        width: 90%;
    }
    article {
        display: flex;
    }
    figure {
        flex: 1 0 30%;
    }
    figcaption {
        text-align: center;
    }
    ul {
        margin-left: 10px;
        padding: 10px;
    }
    div.desktop-only {
        display: block;
    }
    div.mobile-only {
        display: none;
    }
}