body{
  background-color: #0a081c;
}
.name{
  font-family: Arial;
  color: white;
  font-weight: bold;
  font-size: xx-large;
  text-align: center;
}


.pfp{
  width: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100px;
  transition: transform 0.5s ease-in-out;
  border: 3px solid cyan;
  box-shadow: 0px 0px 15px cyan, 0px 0px 15px cyan inset; 
  
  
}
.pfp:hover{
  transform: rotate(360deg);
}
.container{
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.container button{
  background-color: rgb(21, 165, 255);
  color: white;
  border: none;
  border-radius: 2px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  transition: 0.15s;

}
.container button:hover{
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: rgb(224, 240, 242);
  color: rgb(21, 165, 255);
  
}


.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; /* Centers the text */
}

.about {
  max-width: 600px;
  font-family: monospace;
  color: white;
  font-size: x-large;
  line-height: 1.5;
  white-space: pre-wrap; 
  overflow: hidden;
  display: inline-block;
  border-right: none !important; 
  animation: typing 4s steps(100, end) forwards, blink 0.6s step-end infinite;
}

/* Typing Effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Blinking Cursor Effect */
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.about::after {
  content: "|";
  animation: blink 0.8s step-end infinite;
}






