/* styles.css */
@keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  body {
    background-color: #0F0F0F;
    color: #E0E0E0;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  .container {
    text-align: center;
  }
  .message {
    margin-bottom: 2rem;
  }
  .message h1 {
    font-size: 3rem;
    background: linear-gradient(-45deg, #ffffff, #3593E7, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 4s infinite linear;
  }
  .message p {
    font-size: 1.2rem;
    line-height: 1.5;
  }
