body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    font-family: 'Courier New', monospace;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
  }
  
  .typewriter {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
  }
  
  .typewriter h1 {
    font-size: 4rem;
    overflow: hidden;
    border-right: 0.15em solid #7d8fc3;
    white-space: nowrap;
    margin: 0;
    letter-spacing: 0.15em;
    animation: 
      typing 4s steps(30, end),
      blink-caret 0.5s step-end infinite,
      repeat 6s ease-in-out infinite;
  }
  
  .footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 50%;
    font-size: 2rem;
    color: #0e1c41;
  }
  
  .logo {
    max-width: 500px;
    margin-bottom: 10px;
  }
  
  .footer a {
    color: #0e1c41;
    text-decoration: none;
  }
  
  .footer a:hover {
    color: #0e1c41;
    text-decoration: underline;
  }
  
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #7d8fc3; }
  }
  
  @keyframes repeat {
    0% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
