body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0b3d91, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    color: #ffffff;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
  }
  
  p {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.5;
    animation: glow 2s ease-in-out 1s infinite alternate;
  }
  
  @keyframes glow {
    from {
      text-shadow: 0 0 10px #1e90ff, 0 0 20px #1e90ff, 0 0 30px #1e90ff, 0 0 40px #1e90ff, 0 0 70px #1e90ff, 0 0 80px #1e90ff, 0 0 100px #1e90ff, 0 0 150px #1e90ff;
    }
    to {
      text-shadow: 0 0 20px #1e90ff, 0 0 30px #1e90ff, 0 0 40px #1e90ff, 0 0 50px #1e90ff, 0 0 60px #1e90ff, 0 0 70px #1e90ff, 0 0 80px #1e90ff, 0 0 100px #1e90ff;
    }
  }
  