#errorVideo {
    position: fixed;
    top: 15%; 
    left: 15%; 
    width: 70%; 
    height: 70%; 
    z-index: 1;
}

#landingVideo {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 70%;
    min-height: 70%;
    z-index: -1;
}

#landingText {
    color: rgb(175, 165, 147);
    position: absolute;
    bottom: 10;
    right: 10;
    width: 40%;
    text-align: right;
    z-index: 2;
    word-wrap: break-word;
}

#errorText {
    color: white;
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

#descriptionText {
    color: white;
    display: inline-block;
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 80%;
    text-align: right;
    z-index: 2;
    word-wrap: break-word;
    font-family: monospace;
    white-space: pre-wrap;
    font-size: 18px;
}

#textSpan {
  background-color: black;
  color: white;
  font-family: monospace;
  font-size: 18px;
}

#cursor {
  animation: blink 0.5s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

#navigation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    font-family: 'Electrolize', sans-serif;
  }
    
  .nav-link:hover {
    text-decoration: underline;
  }
  
  #navbar {
    display: flex;
    justify-content: space-around;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    font-family: 'Electrolize', sans-serif;
  }
  
  .nav-category {
    position: relative;
  }
  
  .nav-category a {
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    background-color: #000;
    transition: background-color 0.5s;
  }

  .nav-category a:hover {
    background-color: #34aeec;
  }
  
  .nav-category .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background-color: #666;
    font-family: 'Electrolize', sans-serif;
  }
  
  .nav-category .submenu a {
    color: white;
    padding: 10px;
    text-decoration: none;
    display: block;
    font-family: 'Electrolize', sans-serif;
  }
  
  .nav-category:hover .submenu {
    display: block;
  }

  body {
    background-color: black;
    color: white;
    font-family: monospace;
}

#content-container {
  margin-top: 50px;
}

#content-container h1 {
    text-align: center;
    font-size: 22pt;
}

#content-container hr {
    margin-top: 1em;
    margin-bottom: 1em;
}

#content-container p {
    font-size: 16pt;
}