/* G L O B A L */

* {
  text-align: center;
  background-color: black;
  color: #FFFFFF;
}

html {
  font-family: Helvetica, 'Arial Narrow Bold', sans-serif;
  text-align: center;
}

button {
  font-family: helvetica, sans-serif;
  padding: 15px;
}

/* T E X T */

p {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.6em;
  width: 80%;
  margin: auto;
}

h2 {
  font-size: 2em;
  font-family: Helvetica, 'Arial Narrow Bold', sans-serif;
  text-transform: uppercase;
}


footer {
  margin: 20px;
  padding: 200px 0px 70px 00px;
  float: center;
  text-align: center;
  font-style: italic;
  font-size: 0.5em;
}

/*  M E D I A  */


.header-image {
  width: 100%;
}

.player {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; /* set initial width as 80% of viewport */
}

/* Responsive design for mobile devices (max-width: 768px) */
@media only screen and (max-width: 768px) {
  .player {
    width: 100vw; /* adjust width to 100% on mobile */
  }
}

.player {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; /* set initial width as 80% of viewport */
}

/* Responsive design for mobile devices (max-width: 768px) */
@media only screen and (max-width: 768px) {
  .player {
    width: 100vw; /* adjust width to 100% on mobile */
  }
}

.player video {
  max-width: 100%;
  max-height: 100vh;
  width: 100%;
  height: auto;
}

.player control {
  font-size: 2em;
  padding: 1em 2em; /* adjust button size and spacing */
}

.player progress {
  height: 10px; /* increase progress bar size */
}

/*  T A B L E S  */

table {
  border-collapse: collapse;
  width: 100%;
}

.navCell {
  display: block;
  padding: 10px;
  font-size: 1em;
  line-height: 2em;
  font-weight: bold;
}

.navCell:hover {
  background-color: white;
  color: #000000;
}

