html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    height: 100%;
  }

  body {
    background: linear-gradient(to bottom, #FFFFFF, #FFFFFF);
  }


  .container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #333;
    gap:2em;
  }

  h1 {
    font-size: 2rem;
    color: #333;
    margin: 1rem 0 0.5rem;
    font-weight: 400;
    font-style: normal;
  }

  p {
    font-size: 0.9rem;
    color: #444;
  }

 .site-logo {
  margin-block-start:1em;
 }

  footer {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
  }