/* G L O B A L */

.header-image {
  width: 100%;
}

* {
  text-align: center;
  background-color: #ffffff;
  color: #000000;
}

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

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

/* T E X T */

h1 {
  font-family: Helvetica, 'Arial Narrow Bold', sans-serif;
  font-size: 8em;
  text-transform: uppercase;
  margin: 12px;
  padding: 0px;
}

p {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1em;
  width: 80%;
  max-width: 500px;
  margin: auto;
  text-align: center;
}

h2 {
  font-size: 2em;
  font-family: Helvetica, 'Arial Narrow Bold', sans-serif;
  text-transform: uppercase;
  text-align: center;
  width: 60%;
  margin: auto;
}

.footer-container {
  margin: 20px;
  padding: 10px;
  font-style: italic;
  font-size: 0.75em;
  text-align: center;
  align-content: center;
  position: relative;
}


/*  M E D I A  */


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

/* Responsive mobile = (max-width: 768px) */

@media only screen and (max-width: 780px) {
  .player {
    width: 100vw; /* adjust width to 100% on mobile */
  }
  h2 {
    font-size: 1em; /* adjust heading size on mobile */
  }
  h1 {
    font-size: 3.2em; /* adjust heading size on mobile */
  }
  p {
    font-size: 1em; /* adjust paragraph size on mobile */
  }
  iframe {
    max-height: fit-content;
    max-width: fit-content;
    min-width: 100vw;
    min-height: 600px;
  } 
}

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

.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: fixed;
  padding: 10px;
  font-size: 2em;
  line-height: 1em;
  font-weight: bold;
  letter-spacing: 1px;
}

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


/*  B U T T O N S  */

a {
  text-decoration: none;
  color: #000000;
}

a :hover {
  color: #ffffff;
}