html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  justify-content: left; /* horizontal center */
  align-items: center;     /* vertical center */
  min-height: 100vh;
  position: relative;
  z-index: 0;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  pointer-events: none;
  transform: scale(1.7); /* optional zoom to crop bars */
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.9) 0 1px,
    rgba(0,0,0,0)   1px 3px
  );
  opacity: 0.18;
  mix-blend-mode: multiply;
}

.content {
  position: relative;
  z-index: 1;
  text-align: justify; 
  background: rgba(255, 255, 255, 0.4);
  padding: 10pt;
  color: black;
  width: 500px;
  height: 100%;
  font-family: 'Coolvetica Rg';
  font-size: 15pt;
}



.logo {
  width: 400px;
  height: auto;
}




a {
  text-decoration: none;
  background: linear-gradient(90deg, #338bf3, #b9b3e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.4s ease;
}

a:hover {
  background: linear-gradient(90deg, #b9b3e8, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.bottom {
  position: absolute;
  bottom: 15pt; 
  left: 50%;
  transform: translateX(-50%);
}


