h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  
  h2, h3 {
    font-size: clamp(1.2rem, 4vw, 2rem);
  }
  
  p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.5;
  }
  

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
}

p, div, span, input, textarea {
    font-size: 16px;
  }

@media (max-width: 600px) {
    .content-image {
      width: 100%;
    }
  }

/* Tablets (768px and up) */
@media (min-width: 768px) {
    body {
      padding: 15px;
    }
    
    #content {
      width: 90%;
    }
  }
  
  /* Desktops (992px and up) */
  @media (min-width: 992px) {
    body {
      padding: 20px;
    }
    
    #content {
      width: 80%;
    }
  }

#password-container {
    max-width: 300px;
    width: 90%
    margin: 100px auto;
    text-align: left;
}

#password-input {
    font-size: 16px;
    width: 100%;
    max-width: 250px;
    padding: 8px;
    margin: 10px 0;
  }

#content {
    max-width: 800px;
    width: 95%;
    margin: 0 auto;
}

.intro-text {
    /*max-width: 800px; /* Limits the width to 800px */
	margin-left: auto; /* Centers the section horizontally */
	margin-right: auto; /* Centers the section horizontally */
	text-align: left; /* Justifies the text to the left */
	word-wrap: break-word; /* Allows long words to break and wrap */
}

.intro-text p {
    width: 100%; /* Fill the container up to 80ch */
    margin: 0;
    line-height: 1.5;
    box-sizing: border-box;
}


.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.content-image {
    max-width: 100%
    width: 300px;
    height: auto;
    margin: 10px 0;
	cursor: pointer; /* Shows it’s clickable */
}

.video-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%
    justify-content: flex-start;
}

.video-container {
    margin: 20px 0;
    width: 100% /* added */
    float: left;
}

.video-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}

.video-player { /* all added */
    width: 100%;
    height: auto;
  }

button {
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
}

.seekBar {
    width: 100%
    max-width: 200px;
    vertical-align: middle;
    margin: 5px 0;
}

.progress-bar {
    width: 100% /* 640px; */
    height: 10px;
    background-color: #ddd;
    margin-top: 10px;
}

.progress {
    width: 0%;
    height: 100%;
    background-color: #4CAF50;
}