@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&display=swap');

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 250px;
  height: 100vh;
  background: white;
  margin: 0;
  color: black;
  font-family: "Azeret Mono", sans-serif;
}

.typing {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 16px;
  white-space: nowrap;       
  overflow: hidden;          
  border-right: 3px solid;   
  width: 0;                   
  animation: typing 1.2s steps(10, end) forwards, 
             blink 1s step-end infinite;      
}

.typing.start {
  animation: typing 1.2s steps(10, end) forwards, blink 0.6s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 10ch; }
}
@keyframes blink {
  50% { border-color: transparent; }
}


.about {
  margin-top: 0px;
  font-size: 20px;
  max-width: 600px;
  text-align: center;
  opacity: 0; 
  animation: fadeIn 2.2s ease forwards; 
  animation-delay: 1.4s; 
}
.about a {
  color: #CFCFCF;  
  text-decoration: none;
  font-weight: 400;
  margin: 0 8px;
}
.about a:hover {
  text-decoration: underline;
}
.about a:visited {
  color: #585858; 
}
.about a:active {
  color: #585858;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
