* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Courier New', monospace;
  color: #00fff0;
}
    

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.overlay {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
}

.corner-top-left {
  position: absolute;
  top: 10px;
  left: 15px;
  font-weight: bold;
}

.corner-bottom {
  position: absolute;
  bottom: 10px;
  left: 15px;
  font-size: 0.9em;
}

.logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid black;
  object-fit: cover;
  margin-bottom: 20px;
  cursor: pointer;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.typing, .typing2 {
  font-size: 2em;
  border-right: 2px solid #00fff0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 2s steps(30, end) forwards, blink-caret 1s step-end infinite;
  margin: 0 auto;
}

.typing2 {
  animation-delay: 1s;
  animation-name: typing2, blink-caret;
  animation-fill-mode: forwards;
}

.hidden-caret {
  border-right: none;
  animation: none;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes typing2 {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  50% { border-color: transparent }
}

.btn {
  margin-top: 20px;
  padding: 12px 24px;
  background: black;
  color: #00fff0;
  border: black;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  display: none;
}