body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #080823;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
  }
  
  .logo {
    width: 400px;
    margin-bottom: 30px;
  }
  
  h1 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  p {
    color: #FFFFFF;
    font-size: 1.25rem;
    margin-bottom: 60px;
  }
  
  footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    color: #e0e0e0;
  }