/* Reset CSS */  
* {  
    margin: 0;  
    padding: 0;  
    box-sizing: border-box;  
}  

/* Global Styles */  
body {  
    font-family: 'Arial', sans-serif;  
    line-height: 1.6;  
    color: #333;  
    background-color: #f4f4f4;
}  

.footnotes {
    margin-top: 50px;
    font-size: 0.9em;
}
.footnotes ol {
    padding-left: 20px;
}
.backlink {
    margin-left: 5px;
    text-decoration: none;
}

a {
    text-decoration: underline;
    color: inherit;
}

.container {  
    max-width: 1200px;  
    margin: 0 20px;  
    padding: 0 0px;  
}  

/* Header Styles */  
header {  
    background: #f4f4f4;
    color: black;  
    padding: 1rem 0;  
}  

/* Navigation Menu */
nav {
    border-bottom: 1px solid black; /* Adds a horizontal line underneath */
    padding-bottom: 10px;
}

nav ul {  
    list-style: none;  
    display: flex;  
    gap: 2rem;
    padding: 0 20px;    /* 2nd number is left margin*/
}  

nav a {  
    color: black;  
    font-weight: bold;
    text-decoration: none;
    padding: 0.2rem 0;          /* first number is space between item and the item-underline */
}  

nav a.active {  
    border-bottom: 3px solid black; /* the thickness of navigation line */
}  

nav a:hover {  
    color: #e8491d;  
}  

footer {
    margin-top: 80px; /* Adjust value as needed (e.g., 20px, 40px) */
    padding: 20px 20px;         /* 2nd number is left margin*/
    /* background: #333; */
    /* color: white; */
    /* text-align: center; */
}

/* Responsive Navigation */  
@media (max-width: 768px) {  
    nav ul {  
        flex-direction: column;  
        gap: 1rem;  
        text-align: center;  
    }  
}  

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



/* Existing global styles remain unchanged */

/* Video Container and Element Styling */

.video-container {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Controls vertical spacing between videos */
    max-width: 400px; /* Limits overall width on very large screens */
    padding: 0px;
}

.video-item {
    display: flex;
    flex-direction: column;
}

.video-title {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.video-container video {
  width: 100%;
  height: auto;
}

div.email > span:nth-child(2) {
	display: none;
}

