html {
    font-size: 14px; 
    font-size: 1vh;
    
    font-family: "Open Sans", sans-serif; 
    background-color: black;
    color: rgb(251, 242, 227);
  }

  body{
    text-align: center;
    align-content: center;
    margin: auto;
    padding: 70px;
    color: rgb(251, 242, 227);
    max-width: 1000px;
  }

  h1 {
    font-size: 72px;
  }

  div {
    padding: 10px;
    text-align: left;
  }
  
  a {
    text-decoration: none !important;
    color : rgb(251, 242, 227) !important;
  }
  
  button {
    background-color: black; /* Green */
    color: rgb(251, 242, 227);
    padding: 15px 32px;
    text-align: center;
    border: none;
    font-size: 16px;
 }
  button:hover {
    background-color: rgb(35, 35, 35);
 }
 
 .album {
  width: 500px;
  max-width: 90vw;
  min-width: 250px;
  display: inline-block;
  vertical-align: top;
  margin: 0 10px 40px 10px;
  text-align: left;
  box-sizing: border-box;
  border-radius: 12px;
  padding: 20px;
}

body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

/* stack albums vertically on small screens */
@media (max-width: 900px) {
  body {
    flex-direction: column;
    align-items: center;
  }
  .album {
    margin: 10px 0;
    width: 95vw;
    max-width: 500px;
  }
}

#myVideo {
  width: 100vw;
   height: 100vh;
   object-fit: cover;
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   z-index: -1;
}

.album img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Video background */
* {
  box-sizing: border-box;
}
.video-background {
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
}
.video-foreground,
.video-background iframe {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  z-index: -99;
  pointer-events: none;
  background: #000;
  object-fit: cover; /* This will crop the video to fill the screen */
}

/* Remove any aspect-ratio hacks for video-foreground and iframe */
  .video-background iframe {
    width: 400vw !important;
    height: 100vh !important;
    transform: translateX(-200vw);
    object-fit: cover !important;
  }

@media (min-aspect-ratio: 16/9) {
  .video-foreground {
    height: 100vh;
    top: 0;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground {
    width: 100vw;
    left: 0;
  }
}
@media all and (max-width: 600px) {
  .vid-info {
    width: 50%;
    padding: 0.5rem;
  }
  .vid-info h1 {
    margin-bottom: 0.2rem;
  }
}
@media all and (max-width: 500px) {
  .vid-info .acronym {
    display: none;
  }
}

/* Crop and zoom the YouTube iframe on mobile */
@media (max-width: 700px) {

  }
}
