body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(to bottom, #f4e6f9, #e1e9ff);
    color: #4c2a66;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
  }

  .logo {
    width: 400px;
    margin-bottom: 30px;
  }

  .message {
    font-size: 24px;
    text-align: center;
    background-color: #ffffffaa;
    padding: 20px 40px;
    border-radius: 20px;
    border: 2px solid #b89fd4;
    box-shadow: 0px 4px 8px #d0b4ee;
  }

  footer {
    margin-top: auto;
    width: 100%;
    background-color: #4c2a66;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
  }

  .footer-left, .footer-center, .footer-right {
    flex: 1;
    text-align: center;
  }

  .footer-left {
    text-align: left;
    padding-left: 20px;
  }

  .footer-right {
    text-align: right;
    padding-right: 20px;
  }

  @media (max-width: 600px) {
    .message {
      font-size: 18px;
      padding: 15px;
    }

    footer {
      flex-direction: column;
      text-align: center;
    }

    .footer-left, .footer-center, .footer-right {
      padding: 5px 0;
      text-align: center;
    }
  }