body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  color: white;
  overflow: hidden;
}

/* VIDEO BG */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* LOGO */
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 75px;
  border-radius: 12px;
  box-shadow: 0 0 20px black;
}

/* TITLE */
.title {
  position: absolute;
  top: 20px;
  width: 100%;
  text-align: center;
  font-size: 38px;
  letter-spacing: 4px;
  text-shadow: 0 0 20px cyan;
}

/* SIDEBAR */
.sidebar {
  position: absolute;
  left: 0;
  top: 0;
  width: 240px;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.9), transparent);
}

/* MENU */
.menu {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.menu-item {
  font-size: 28px;
  margin: 20px 0;
  cursor: pointer;
  transition: 0.3s;
}

.menu-item:hover {
  text-shadow: 0 0 20px cyan;
}

/* EFEK */
.blur {
  filter: blur(6px);
  opacity: 0.2;
}

.active {
  font-size: 32px;
  text-shadow: 0 0 30px cyan;
}