body, html{
    margin: 0;
  }
    .container
    {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      align-content: center;
      height: 100%;
      width: 100%;
      font-family: Arial, Helvetica, sans-serif;
      color: whitesmoke;
      margin: 0;
      padding: 0;
      background-image: url(200.svg);
      background-repeat: no-repeat;
      background-size: cover;
    }
    .box1{
      text-align: center;
      border: none;
      font-weight: normal;
      padding: 0;
      font-size: 6vw;
      margin-top: 60px;
      white-space: pre-line;
      text-align: center;
      color: white;
      background-color: rgb(3, 4, 94, 0.5);
      border-radius: 35px;
      width: 85%;
      height: 100%;
      backdrop-filter: blur(4px);
    }
    .box2{
      margin: auto;
      padding: 10px;
      font-size: 6vw;
      font-weight: lighter;
      color: whitesmoke;
      white-space: pre-line;
      width: 65vw;
    }
    .box3 {
      font-size: 18px;
      font-family: Arial, Helvetica, sans-serif;
      margin-top: 60px;
      margin-bottom: 150px;
      text-align: center;
      padding-top: 20px;
      padding-bottom: 20px;
      height: 100%;
      width: 85%;
      background-color: rgb(0,168,107, 0.5);
      border-radius: 35px;
      backdrop-filter: blur(2px);
    }
    .btn1 {
      width: 130px;
      height: 40px;
      font-size: 18px;
      cursor: pointer;
      background-color: rgb(0,168,107, 0.5);
      color: #fff;
      border: none;
      border-radius: 5px;
      transition: all .4s;
     }

     .btn1:hover {
      border-radius: 5px;
      transform: translateY(-10px);
      box-shadow: 0 7px 0 -2px #ace1af,
       0 15px 0 -4px #e9ffdb,
       0 16px 10px -3px #e9ffdb;
     }
     
     .btn1:active {
      transition: all 0.2s;
      transform: translateY(-5px);
      box-shadow: 0 2px 0 -2px #ace1af,
       0 8px 0 -4px #e9ffdb,
       0 12px 10px -3px #e9ffdb;
     }
    
     .contact-form {
      background-color: transparent;
      padding: 0;
      width: 100%;
      height: 100%;
    }
    
    .contact-form label {
      color: white;
    }
    
    .contact-form .heading {
      font-size: 24px;
      color: white;
      font-weight: bold;
      display: block;
      padding: 10px;
    }
    
    .contact-form form {
      display: flex;
      flex-direction: column;
      padding: 20px;
    }
    
    .contact-form label {
      margin-bottom: 10px;
    }
    
    textarea {
      resize: none;
      height: 80px;
    }
    
    .contact-form input, .contact-form textarea {
      padding: 10px;
      border: none;
      border-radius: 5px;
      margin-bottom: 20px;
    }
    
    .contact-form input:focus, .contact-form textarea:focus {
      outline: none;
      box-shadow: 0 0 5px rgb(3, 4, 94, 0.7);
      transform: scale(1.05);
      transition: transform 0.3s ease-in-out;
    }
    
    .contact-form button[type="submit"] {
      background-color: rgb(3, 4, 94, 0.7);
      color: #fff;
      border: none;
      border-radius: 5px;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
    }
    
    .contact-form button[type="submit"]:hover {
      transform: scale(1.1);
      transition: transform 0.3s ease-in-out;
    }
    @media (min-width: 600px) {
      .box1 {
        max-width: 400px;
        font-size: 20px;

      }
      .box3 {
        max-width: 400px;

      }
      
    }
    @media (min-width: 900px){
      body, html {
        margin: 0;
        padding: 0;
        background-image: url(105.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        height: 100%;
        width: 100%;
      }
      .container
      {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        align-content: center;
        height: 600px;
        font-family: Arial, Helvetica, sans-serif;
        padding-top: 10vh;
        padding-bottom: 10vh;
        background: transparent;
      }
      .box1{
        order: 1;
        text-align: center;
        border: solid;
        border-color: transparent;
        padding: 0;
        font-size: 18px;
        color: white;
        margin-left: 40px;
        margin-right: 40px;
        margin-top: 0;
        max-width: 400px;
        background-color: rgb(3, 4, 94, 0.5);
        border-radius: 45px;
        height: 85%;
        width: 100%;
        backdrop-filter: blur(4px);
      }
      .box2{
        order: 2;
        margin: 10px;
        text-align: center;
        padding: 0;
        font-size: 2vmin;
        font-weight: lighter;
        color: white;
        white-space: pre-line;
        max-width: 400px;
        border: solid;
        border-color: transparent;
        background-color: rgb(245,245,245, 0.2);
        border-radius: 25px;
        height: 80%;
      }
      .box3 {
        order: 3;
        text-align: center;
        margin: 0;
        padding: 0;
        font-family: Arial, Helvetica, sans-serif;
        max-width: 400px;
        height: 85%;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 40px;
        margin-right: 40px;
        background-color: rgb(0,168,107, 0.5);
        border-radius: 45px;
        backdrop-filter: blur(4px);
      }
      
      .btn1 {
        width: 130px;
        height: 40px;
        font-size: 1.1em;
        cursor: pointer;
        background-color: rgb(0,168,107, 0.7);
        color: #fff;
        border: none;
        border-radius: 5px;
        transition: all .4s;
       }
       
       .btn1:hover {
        border-radius: 5px;
        transform: translateY(-10px);
        box-shadow: 0 7px 0 -2px #ace1af,
         0 15px 0 -4px #e9ffdb,
         0 16px 10px -3px #e9ffdb;
       }
       
       .btn1:active {
        transition: all 0.2s;
        transform: translateY(-5px);
        box-shadow: 0 2px 0 -2px #ace1af,
         0 8px 0 -4px #e9ffdb,
         0 12px 10px -3px #e9ffdb;
       }
      
      .contact-form {
        background-color: transparent;
        padding: 0;
        width: 100%;
        height: 100%;
      }
      
      .contact-form label {
        color: white;
      }
      
      .contact-form .heading {
        font-size: 24px;
        color: white;
        font-weight: bold;
        display: block;
        padding-top: 40px;
      }
      
      .contact-form form {
        display: flex;
        flex-direction: column;
        padding: 20px;
      }
      
      .contact-form label {
        margin-bottom: 10px;
      }
      
      textarea {
        resize: none;
        height: 80px;
      }
      
      .contact-form input, .contact-form textarea {
        padding: 10px;
        border: none;
        border-radius: 5px;
        margin-bottom: 20px;
      }
      
      .contact-form input:focus, .contact-form textarea:focus {
        outline: none;
        box-shadow: 0 0 5px rgb(3, 4, 94, 0.7);
        transform: scale(1.05);
        transition: transform 0.3s ease-in-out;
      }
      
      .contact-form button[type="submit"] {
        background-color: rgb(3, 4, 94, 0.7);
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
      }
      
      .contact-form button[type="submit"]:hover {
        transform: scale(1.1);
        transition: transform 0.3s ease-in-out;
      }
      @media (min-width: 1400px){
        .body, html{
        }
        .container{
          padding-top: 19vh;
      }
    }
  