body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to bottom, #65a8e0, #007bff);
    animation: wave 10s infinite linear;
  }
  
  .container {
    text-align: center;
  }
  
  .container img {
    max-width: 100%;
    height: auto;
  }
  h1 {
    text-align: center;
    color: white;
    font-size: 40px;
    margin-top: 20px;
    font-family: 'Comfortaa', sans-serif;
  }
  h5 {
    text-align: center;
    color: white;
    font-size: 10px;
    margin-top: 20px;
    font-family: 'Comfortaa', sans-serif;
  }
  .message {
    color: white;
    font-size: 24px;
    margin-top: 20px;
    font-family: 'Comfortaa', sans-serif;
  }
  
  @keyframes wave {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 100% 0;
    }
  }
  