body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-family: "Special Elite", system-ui;
    font-weight: 100;
    font-style: normal;
    background: #121212;
  }
  
  .container {
    width: 70%;
    height: 70%;
    background: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .typingText {
    font-size: 30px;
    color: white;
    text-align: center;
  }
  
  .typingText::after {
    content: "|";
    color: white;
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
  }
  


  .special-elite-regular {
    font-family: "Special Elite", system-ui;
    font-weight: 100;
    font-style: normal;
  }
  