body {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.0em;
    min-height: 100vh; 
    margin: 0;
    padding-top: 10vh;
    background-color: #2e3547;
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/THSPPsitebg2024.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1.0;
    z-index: -1;
}


header {
    display: block;
    text-align: center;
    margin-bottom: 1em; 
}

h1 {
    display: inline-flex;
    align-items: center;
    font-size: 1.8em;
    font-weight: normal;
    color: white;
}

h2 {
    display: inline-flex;
    align-items: center;
    font-size: 1.4em;
    font-weight: bold;
    color: white;
    margin-bottom: 2em;
}

nav {
    display: block;
    text-align: center;
    margin-bottom: 1em;
}

nav a {
    display: inline-block;
    margin: 0 0.5em;
    padding: 0.75em 1em;
    border: 2px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    transition: all 0.2s;
}

nav a:hover {
    background-color: white;
    color: #2e3547;
}

main {
    color: white;
    font-family: 'Quicksand', sans-serif;
    max-width: 60%;         
    margin: 1em 0;           
    padding-left: 20%;      
    padding-top: 1em;
    padding-bottom: 1em;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(min-content, 1fr));
    gap: 0.5rem;
    margin-bottom: 8em;
}

.video-grid-cell {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    padding: 1rem;
}

.video-grid-cell iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
}

iframe {
    border: none;
}

.video-grid-cell-p {
    font-size: 1em;
    padding: 0;
    text-align: center;
}

main p, main ul {
    font-size: 1.2em;     
    line-height: 1.5;
    margin-bottom: 2em;
}

main ul {
    list-style-type: disc;
    margin: 1em 0;
    margin-bottom: 2em;
    padding-left: 2em;
}

main a {
    color: #2ecc71;
    font-weight: bold;
    text-decoration: none;
}

main a:hover {
    text-decoration: underline;
}

main .video-container iframe {
    display: block;
    margin: 0 auto;
    width: 80%;
    max-width: 560px;
}

main h2 {
    margin-bottom: 0.5em;
}

.date {
    font-size: 0.9em;     
    margin-bottom: 3em;
}

.disclaimer {
    font-weight: bold;
    margin: 2em;
}

img {
    max-width: 100%;
    max-height: 100%;
}

main hr {
    margin-bottom: 3em;
}