* {
      box-sizing: border-box;
    }
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2px;
      background-color: #60D9EC;
    }
    .header-left,
    .header-right {
      width: 50%;
    }
    .header-left {
      text-align: center;
      font-size: 24px;
      font-weight: bold;
      font-family: Cursive, Fantasy, Helvetica, sans-serif, serif;
      color: blue;
    }
    .header-right {
      text-align: center;
     
    }
    .content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      }
   .content-left {
   width: 65%;
   font-family: Arial, sans-serif;
   padding: 20px;
      background-color: #C5EFF6;
   }
   .content-right {
   width: 35%;
   padding: 20px;
      background-color: #ffffff;
   
   }
   .button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.my-button {
  display: block;
  width: 100%;
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 40px;
  background-color: #60D9EC;
  color: blue;
  font-size: 1.2em;
  text-align: center;
  text-decoration: none;
}


.my-button:hover {
  background-color: #C5EFF6;
}

.mobilebutton-container {
  display: none;
}





      
    .new-footers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #60D9EC;
    color: #fff;
    height: 450px;
  }

  .new-footer-1,
  .new-footer-2 {
    flex: 1;
    text-align: center;
    padding: 20px;
  }

  /* Make sure the original footer is below the new footers */
  footer {
    clear: both;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  .separator {
    width: 20px;
    height: 100%;
    border-left: 20px solid white;
  }
.separator2 {
    width: 100%;
    height: 15px;
    border-left: 20px solid white;
  }
 a.foot:link {color:#ffffff;font-size:16px;text-decoration:none;}
   a.foot:visited {color:#ffffff;}
    #link {
    font-size: 30px;
    }
    H1 {
    color: blue;
    text-align: center;
    
    }
    H3 {
    color: blue; 
    }
    
    @media only screen and (max-width: 600px) {
      .header {
        flex-direction: column;
        align-items: center;
      }
      .header-left,
      .header-right {
        width: 100%;
        text-align: center;
      }
      #link {
    font-size: 20px;
    }
    img {
  max-width: 100%;
  height: auto;
  width: 100%;
}
    .content-left {
      width: 100%;
      font-family: Open Sans;
}
   .content-right {
   display: none;
   }
  .new-footers {
      flex-direction: column;
      height: auto;
    }

    .new-footer-1,
    .new-footer-2 {
      flex: 0 0 100%;
      
    }
    .separator {
      width: 100%;
    height: 100%;
    border-bottom: 30px solid white;
    }
    footer {
  font-size: 14px;
  }
  .mobilebutton-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}




    }