#video-container {
  display: flex; /* Establishes a flex container */
  flex-direction: column; /* Aligns children vertically */
  align-items: center; /* Centers children horizontally */
  justify-content: flex-start; /* Aligns children to the start of the flex container vertically */
  height: auto; /* Auto height based on content */
  overflow-y: auto; /* Adds vertical scroll if necessary */
  padding: 0 20px; } /* Adds padding of 20px horizontally */
.yt_vid_thumbnail {
  width:240px;
  height:180px; }
.video-small {
  position: relative;
  width: 320px;
  height: 240px;
}
.overlay-link {
  display: none;
  position: absolute;
  top: 50%;  /* Center the link vertically */
  left: 50%; /* Center the link horizontally */
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
.container-index {
  position: relative; /* Positions an element relative to its normal position without affecting the layout of other elements. */
  width: 100%;
  max-width: 960px;
  margin: 0 auto; /* Centers the element horizontally within its container. */
  padding: 0 20px;
  box-sizing: border-box; }
.content-area {
  background-image: url('./img/background.png');
  background-repeat: repeat;
  background-position: left;
  /*flex:1;*/ }
.spacer {
  padding-bottom: 5%;
  background-color: white; }
.footer {
  position: relative; /* To ensure the footer stays at the very bottom of the content when scrolled */
  bottom: 0;
  height: 24px;
  background-color: #123455;
  color: white;
  text-align: center; }
html {
  font-size: 66.6%;
  background-color: white; }
body {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em; 
  line-height: 1.6;
  font-weight: 400; /* Sets the thickness of the characters to normal. */
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; /* Specifies a prioritized list of font family names; if "Raleway" is not available, it'll try "HelveticaNeue", then "Helvetica Neue", and so on. */
  color: #2e2f2f;
  display: flex;
  flex-direction: column;
  min-height: 100vh; }
p {
  margin-top: 0; }
b {
  color: purple; }
hr {
  margin-top: 0;
  margin-bottom: 0;
  border-width: 2px;
  border-top: 1px solid #E1E1E1;
  border-color: purple; }
ul {
  list-style-type: square; /* changes bullet points to squares */
  /*margin-left: -25px;*/ } /* moves the list 25px to the left */
li {
  font-style: italic;
  color: purple;
  background-color: rgba(255, 255, 255, 0.8); }
video {
  max-height: 720px; /* Ensures the maximum height won't go over 720 pixels */
  max-width: 100%; /* Ensures the video doesn't exceed the width of the screen, regardless of the video's original width */
  height: auto; /* Maintains the aspect ratio while adjusting the height */
  width: auto; } /* Maintains the aspect ratio while adjusting the width */
table {
  border: 1px solid gray; /* Adds a gray border around the table */
  background-color: rgba(255, 255, 255, 0.8); /* 80% transparent white */
  margin-left: 5%; 
  margin-right: 5%; }
td {
  text-align: left; /* Aligns the text to the left within the table */
  padding: 5px; } /* Adds padding inside the table cells */
img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
  }