/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .homepage-container {
    text-align: center;
    max-width: 900px;
    padding: 20px;
    border-radius: 12px;
  }
  
  .header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  /* Typing effect container */
  .typing-container {
    text-align: center;
    padding: 20px;
    margin-top: 20px; /* Optional: adds space between the header and typing effect */
  }
  
  /* Typing effect styles */
  .typing-effect {
    font-family: 'Courier New', Courier, monospace; /* Monospaced font for the typing look */
    font-size: 1.5rem;
    color: #f1f1f1; /* White color for the text */
    overflow: hidden; /* Ensures text is hidden initially */
    white-space: nowrap; /* Prevents text from wrapping */
    border-right: 0.15em solid #f1f1f1; /* Cursor effect */
    width: 0; /* Start with no visible text */
    animation: typing 3s steps(30) 1s 1 normal both, blink 0.75s step-end infinite;
  }
  
  /* Keyframe animation for typing effect */
  @keyframes typing {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  
  /* Blinking cursor effect */
  @keyframes blink {
    0%, 50% {
      border-color: transparent;
    }
    50%, 100% {
      border-color: #f1f1f1;
    }
  }
  
  .options {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .option {
    background-color: #1e1e1e;
    border: 2px solid #444;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    width: 30%;
    text-decoration: none;
    color: #f1f1f1;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 2px 8px 0px;
  }
  
  .option:hover {
    background-color: #333;
    transform: scale(1.05);
  }
  
  .option i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #f1f1f1;
  }
  
  .option h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .option p {
    font-size: 1rem;
    color: #bbb;
  }
  
  @media (max-width: 768px) {
    .options {
      flex-direction: column;
      align-items: center;
    }
  
    .option {
      width: 100%;
    }
  }
  