body {
  margin: 0;
  font-family: 'Teko', sans-serif;
  letter-spacing: 1px;
  overflow: hidden;
  background: #000;
}
.color-picker {
  position: fixed;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.65);
  padding: 10px 0;
  border-radius: 4px;
  z-index: 3;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 100px;
}
.color-picker div {
  width: 30px;
  height: 30px;
  margin: 10px auto;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.5s, border 0.3s;
}
.color-picker div:hover {
  transform: scale(1.2);
}
.color-picker div.selected {
  border: 2px solid #fff;
  transform: scale(1.1);
}
#intro {
  position: relative;
  height: 100vh;
  background-color: #000;
  transition: background-color 0.5s;
  background-image: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
}
#bg-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  user-select: none;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #bg-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    user-select: none;
    z-index: 1;
    transform: translateY(-15%); /* Moves logos up slightly */
  }
}

#password-prompt {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 3s;
  text-align: center;
  z-index: 2;
  font-family: 'Orbitron', sans-serif;
  color: white;
}
@media only screen and (max-width: 768px) {
  #password-prompt {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -40%); /* 10% lower */
    opacity: 0;
    transition: opacity 3s;
    text-align: center;
    z-index: 2;
    font-family: 'Orbitron', sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
#password-input {
  padding: 10px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  outline: none;
}
#password-input::placeholder {
  color: #555;
}
#enter-button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  font-family: 'Orbitron', sans-serif;
  background: transparent;
  color: #fff;
  border: 0.5px solid #fff;
  border-radius: 4px;
  cursor: pointer;
}
#enter-button:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 768px) {
  #enter-button {
    border: none;
  }
}
#error-message {
  color: red;
  font-size: 16px;
  margin-top: 10px;
  opacity: 1;
  transition: opacity 2s;
}
#error-message.fade-out {
  opacity: 0;
}
#fade-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 9999;
}
@media (min-width: 421px) and (max-width: 800px) {
  header { font-size: 7.5vw; }
  nav { font-size: 3.125vw; }
}
@media (max-width: 420px) {
  header { font-size: 31.5px; }
  nav { font-size: 13.125px; }
}
@media (min-width: 421px) and (max-width: 800px) and (max-height: 400px) {
  header { font-size: 5vw; }
  nav { font-size: 2.0833vw; }
}
@media (max-width: 420px) and (max-height: 400px) {
  header { font-size: 21px; }
  nav { font-size: 8.75px; }
}