body {
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    background-color: #f9f9f9;
    color: #1a1a1a;
    text-align: center;
  }
  
  h1 {
    font-size: 6rem;
    margin: 0;
    color: #0f2e2e;
  }
  
  p {
    font-size: 1.2rem;
    margin: 1rem 0;
  }
  
  a {
    color: #0f2e2e;
    text-decoration: underline;
    font-weight: 500;
  }
  
  a:hover {
    color: #008080;
  }
  