html,
body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.video-container {
    position: fixed;
    /* Fix video in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: -1;
    /* Push behind all content */
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    /* Ensure full width */
    min-height: 100vh;
    /* Ensure full height */
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* Ensures video covers the background */
}





.navbar {
    backdrop-filter: blur(6px);
    background: #111e5814;
    border-bottom: 1px solid #111e581a;
    box-shadow: 0 2px 10px #00000052;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 42px;
    box-sizing: border-box;
    transition: background-color .4s ease, backdrop-filter .4s ease, padding .4s ease;
    text-shadow: 0 0 5px #000;
}


.navbar-left {
    display: flex;
    align-items: center;
}

#navbar-logo-left,
.navbar-logo-right {
    height: 48px;
    transition: height .4s ease;
}

@media (min-width: 1440px) {
    #navbar-toggle {
        display: none;
    }
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: "Comic Neue", serif;
}

nav li {
    margin: 0 3px;
}

#navbar-right a {
    color: #fff;
    font-size: 20px;
    letter-spacing: .04rem;
    padding: 5px 14px;
    text-shadow: 0 0 6px #000;
    text-decoration: none;
    transition: .3s;
}

@media (min-width: 1440px) {
    nav .selected {
        background-color: #d2d2d221;
        box-shadow: 0 0 6px #0000004d;
        border-radius: 7px !important;
    }
}

.cover {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: normal;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0);

  /* min-height: 100vh; */
  text-shadow: 0 0 4px #000;
  background-position: center top;
  background-size: cover;
  text-align: center;
    /* Semi-transparent overlay */
}

h1 {
    font-size: 40px;
    font-family: "Noto Sans Mono", serif;
    margin-bottom: 5px;
    margin-top: 0;
}

a.button {
    background-color: #001e7385;
    border-radius: 18px;
    box-shadow: 0 0 6px #0006;
    color: #fff;
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin: 4px;
    padding: 5px 18px;
    text-shadow: 0 0 3px #000;
    border: 0;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
}

.cover-description {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: Calibri, sans-serif;
    letter-spacing: .02rem;
    /* margin-left: 40px;
    margin-right: 40px; */
}

nav {
    position: relative;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0);
}

#navbar-logo-left {
    cursor: pointer;
    margin-right: 13px;
}

.cover-footer {
    text-shadow: 0 0 4px #000;
    position: absolute;
    font-size: 13px;
    font-family: Roboto, sans-serif;
}

#cover-left-text {
    bottom: 3px !important;
    left: 5px !important;
    color: #667ae8 !important;
}


#cover-center-text {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
}

#cover-right-text {
    bottom: 3px;
    right: 5px;
}

#music-emoji {
    position: relative;
    z-index: 100;
    cursor: pointer;
    user-select: none;
}












@media (max-width: 1024px) {
    nav {
        background: none;
        border-bottom: none;
        box-shadow: none;
        padding: 0;
        justify-content: flex-end;
    }
}

@media (max-width: 1440px) {
    nav {
        flex-direction: column;
        align-items: center;
        padding: 7px 20px;
    }
}

@media (max-width: 1440px) {
    #navbar-right {
      justify-content: center;
      flex-direction: column;
    }
  }

  @media (max-width: 1440px) {
    #navbar-right {
      width: 100%;
      display: none;
      flex-direction: column;
      align-items: center;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height .5s ease-out,opacity .5s ease-out;
    }
  }

  @media (max-width: 1440px) {
    .navbar-left, #navbar-right {
      width: 100%;
      justify-content: space-between;
    }
  }

  @media (max-width: 1024px) {
    #navbar-logo-left, nav ul {
      /* display: none; */
      height: 25px;
      display: flex;
      align-items: center; /* Centers content vertically */
      /* margin: 10px;
      margin-left: 0px;
      margin-bottom: 0px; */

    }
  }

  @media (max-width: 1440px) {
    nav ul {
      flex-direction: column;
      width: 100%;
      align-items: center;
      margin: 12px 0;
    }
  }

  @media (max-width: 1440px) {
    nav li {
      margin: 5px 0;
      width: 100%;
      text-align: center;
    }
  }

  @media (max-width: 1440px) {
    nav .selected {
      text-decoration: underline;
      background-color: transparent;
    }
  }

  @media (max-width: 1440px) {
    nav a {
      padding: 10px;
      width: 100%;
    }
  }

  @media (max-width: 1440px) {
    nav li {
      text-align: center;
    }
  }
@media (max-width: 1440px) {

    .navbar-left,
    #navbar-right {
        width: 100%;
        justify-content: space-between;
    }
}


@media (max-width: 1024px) {
    #navbar-toggle {
        /* display: block; */
        position: fixed;
        height: 34px;
        /* top: 8px; */
        right: 8px;
        color: #fff;
        font-size: 22px;
        /* background-color: #00000040; */
        /* padding: 6px 14px; */
        /* border-radius: 6px; */
        z-index: 1000;
        /* align-items: center; */
        cursor: pointer;
    }
}

@media (max-width: 1440px) {
    #navbar-toggle {
        display: block;
        cursor: pointer;
        padding: 5px;
        font-size: 1.5rem;
        color: #fff;
        align-self: flex-end;
    }
}


#navbar-right a:hover {
    background-color: #ffffff17;
    border-radius: 11px !important;
    box-shadow: 0 0 8px #00000029;
  }


  @media (max-width: 1024px) {
    .navbar.navbar-open ul li a:hover {
      background-color: #fff3;
      transform: scale(1.05);
    }
  }

  @media (max-width: 1024px) {
    .navbar.navbar-open ul li a {
      color: #fff;
      font-size: 1.2rem;
      padding: 12px 20px;
      text-decoration: none;
      border-radius: 8px;
      transition: background-color 0.3s,transform .3s;
    }
  }

  @media (max-width: 1440px) {
    nav .selected {
      text-decoration: underline;
      background-color: transparent;
    }
  }

  @media (max-width: 1024px) {
    .navbar.navbar-open ul li {
      width: 100%;
      margin: 12px 0;
      text-align: center;
    }
  }

  @media (max-width: 1440px) {
    nav li {
      margin: 5px 0;
      width: 100%;
      text-align: center;
    }
  }

  @media (max-width: 1024px) {
    .navbar.navbar-open ul {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 50px;
      right: 10px;
      width: 80%;
      max-width: 290px;
      background: #0000008c;
      padding: 10px;
      border-radius: 12px;
      box-shadow: 0 0 12px #0009;
      opacity: 1;
      max-height: 500px;
      overflow-y: auto;
      transition: max-height .4s ease-out,opacity .4s ease-out,backdrop-filter .4s ease;
      z-index: 999;
    }
  }


  @media (max-width: 1440px) {
    nav ul {
      flex-direction: column;
      width: 100%;
      align-items: center;
      margin: 12px 0;
    }
  }

  @media (max-width: 480px) {
    h1 {
      font-size: 24px !important;
    }
  }
  @media (max-width: 768px) {
    h1 {
      font-size: 28px !important;
    }
  }
  @media (max-width: 1440px) {
    h1 {
      font-size: 27px !important;
    }
  }

  @media (max-width: 480) {
    .cover-description {
        font-size: 14px;
        margin: 5px 15px;
    }
  }

  @media (max-width: 768px) {
    .cover-description {
        font-size: 14px;
        margin: 5px 15px;
    }
  }

  @media (max-width: 768px) {
    #cover-inner {
      padding-top: 40px;
      padding-bottom: 100px;
    }
  }
  @media (max-width: 768px) {
    .cover-footer {
      font-size: 11px;
    }
  } 

  @media (max-width: 768px) {
    #cover-center-text{
        display: none;
        /* padding-bottom: 5px; */
    }
    
  }



  /* .content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: normal;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0);

    display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #fff;
  text-shadow: 0 0 4px #000;
  background-position: center top;
  background-size: cover;
  text-align: center;
    /* Semi-transparent overlay */
} */