    body {
      background-color: #cbcbcb;
      margin: 4%;
    }

    a,
    a:hover,
    a:visited,
    a:active {
      color: #0000EE;
      text-decoration: none;
    }

    .container {
      display: flex;
      align-items: flex-start;
      gap: 60px;
      max-width: 1400px;
    }

.nav {
  position: fixed;
  left: 75%;
  top: 10%;
  font-size: large;
}

@media (max-width: 900px) {

  body {
    margin: 5%;
  }

  .container {
    flex-direction: column;
    gap: 40px;
  }

  .nav {
    position: static;
    margin-bottom: 40px;
  }

  nav {
    width: 100%;
  }
}

    nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    nav li {
      margin-bottom: 12px;
    }

    .content {
      flex: 1;
    }

    video {
      width: 100%;
      height: auto;
      display: block;
    }

    .subtext {
      font-size: 12px;
      padding-top: 12px;
      color: #888888;
    }

    .text{
      font-size: x-large;
    }

    @media (max-width: 900px) {

          .text{
      font-size: large;
    }

      body {
        margin: 5%;
      }

      .container {
        flex-direction: column;
        gap: 40px;
      }

      nav {
        width: 100%;
      }
    }

.active {
  font-weight: bold;
}

a.active {
  font-weight: bold;
}

/* img gall */

/* Image gallery */
.image-gallery {
  margin-top: 40px;
}

#gallery-image {
  width: 70%;
  height: auto;
  display: block;
  cursor: pointer;

  user-select: none;
  -webkit-user-drag: none;
}

/* Fullscreen gallery */

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;

  background: rgba(0, 0, 0, 0.92);

  align-items: center;
  justify-content: center;
}

#lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;

  user-select: none;
  -webkit-user-drag: none;
}

#lightbox-video {
  max-width: 90vw;
  max-height: 90vh;
  display: none;
}

.close,
.previous,
.next {
  position: absolute;
  border: none;
  background: none;
  color: white;
  cursor: pointer;
  font-size: 40px;
  padding: 20px;
}

.close {
  top: 10px;
  right: 20px;
}

.previous {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#footer-text{
    color: dimgray;
    display: flex;
    justify-content: flex-end;
    opacity: 0.3;
}

#footer-text:hover{
    opacity: 1;
}