
  @keyframes fadeIn {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
  }

  @media only screen and (max-width: 768px) {
    .responsive {
      flex: 0 1 48%;
      max-width: 48%;
    }
  }

  @media only screen and (max-width: 500px) {
    .responsive {
      flex: 0 1 100%;
      max-width: 100%;
    }
    .text-box {
      margin-left: 20px;
      margin-right: 20px;
    }
    .advise {
      margin-left: 20px;
      margin-right: 20px;
    }
  }

  .title {
    text-align: center;
    color: #fff;
    width: 100%;
    height: auto;
    font-family: 'Lexend Deca'; 
    font-size: 50px;
    margin: 20px 0;
  }

  .title h1 {
    margin-top: -70px;
    font-size: 80px;
    margin: 10px 0;
    margin-top: -10px;
  }

  .title h2 {
    font-size: 3.5rem;
    margin: 5px 0;
  }

  .title h4 {
    font-size: 3rem;
    margin-top: -10px;
  }

  .subtitle {
    text-align: center;
    font-family: 'M PLUS Rounded 1c';
    font-size: 150%;
    color: #fff;
    animation: fadeIn 1s ease-in-out infinite alternate-reverse;
  }

  .title-line {
    width: 100%;
    height: 10px;
    background-color: #fff;
    margin-top: 10px;
    -moz-box-align: baseline;
  }

  .button-container {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
  }

  .custom-button {
    background-color: #fff;
    color: #346bb3;
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 10px 20px;
      text-decoration: none;
      font-family: 'Lexend Deca';
      font-size: 25px;
      transition: transform 0.3s;
      display: inline-block;
      margin-bottom: 10px;
      margin-left: 5px;
      margin-right: 10px;
  }

  .advise {
    text-align: center;
    font-family: 'M PLUS Rounded 1c';
    font-size: 150%;
    color: #fff;
    border: 5px solid white;
    padding: 30px;
    display: block;
    border-radius: 15px;
    margin-top: 40px;
    margin: 40px auto;
    max-width: 100%;
  }

  .advise link {
    color: rgb(255, 165, 0);
    background-color: transparent;
    text-decoration: none;
  }

  .instructions{
    margin-top: 20px;
    text-align: center;
    font-family: 'M PLUS Rounded 1c';
    font-size: 150%;
    color: #fff;
  }

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-image: linear-gradient(#346bb3, #000000);
  }

  .header {
    padding: 30px;
    font-size: 40px;
    text-align: center;
    background: white;
  }

  .buttonss{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer {
    background-color: transparent;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
  }

  .footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .footer-icon {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-size: 40px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    gap: 20px;
  }