body {
    max-width: 854px;
    margin: 10px auto; 
    background-color: #FFF;
    color: #999999;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px; /* set default font size to 16px or 1rem */
    font-weight: 400; /* set default font weight */
    line-height: 1.3; 
    letter-spacing: 0.3px;
    box-sizing: border-box; 
    padding: 5px 10px 10px 10px; 
}

h1 {
    font-size: 2em; /* adjust the size as needed, relative to parent element */
}

h1, h2, h3, h4, h5, h6 {
    color: #999999; /* sets the heading text color to a slightly darker gray */
}



div {
    color: #90EE90;
}

/* Style the video player wrapper */
.videoWrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* set the aspect ratio here */
    margin-bottom: 20px;
    overflow: hidden; /* hide any overflowing content */
}

/* Style the video player */
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Style the timestamp buttons */
.timestamp-btn {
    display: block;
    margin: 10px auto;
    padding: 10px;
    background-color: #488b48;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
	letter-spacing: 0.5px;
    cursor: pointer;
    max-width: 100%; /* set the maximum width to 100% */
    width: 100%; /* set the width to 100% */
}

.center {
    text-align: center;
    margin-top: 10px;
}

.center div {
    margin-top: 5px; /* reduce margin top to bring URL closer to the heading */
}

.center div a {
    color: #fff;
    text-decoration: none;
}

.center div a:hover {
    text-decoration: underline;
}

.timestamp-btn:active,
.timestamp-btn:focus {
  background-color: #333;
  color: #fff;
}

.dynamic-btn {
  background-color: #66a92f;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 20px;
  cursor: pointer;
  border-radius: 5px;
  transition-duration: 0.4s;
}

.dynamic-btn:hover {
  background-color: #3e8e41;
}

#error-message {
    padding-left: 10px;
    padding-right: 10px;
}
i.fas {
    font-size: 2.0em;
}

  /* Style the video player wrapper */
  #video-player-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* set the aspect ratio here */
    margin-bottom: 20px;
    overflow: hidden; /* hide any overflowing content */
  }

  /* Style the video player */
  #video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }