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

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


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

body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
}

.profile {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-animation {
  text-align: center;
}

.animated-text {
  font-size: 24px;
  animation: typing 4s steps(34), blink 0.5s step-end infinite alternate;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #fff;
  animation: typing 4s steps(34), blink 0.5s step-end infinite alternate;
}

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

@keyframes blink {
  50% {
    border-right: none;
    border-color: transparent;
  }
}

@media only screen and (max-width: 600px) {
  .animated-text {
    font-size: 16px;
    max-width: 90%;
    margin: 0 auto;
    animation: none; 
    overflow: visible; 
    white-space: normal; 
    text-align: center; 
  }
}
