@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap');
* {
    background-color: ivory;
    padding: 0;
    margin: 0;
    font-family: 'Raleway';
    }

body{
    font-family: 'Raleway','Nunito', Arial, Helvetica, sans-serif;
    
    font-size: 300;
    /* padding: 10px 0 10px 0; */
}

.container{
    font-family: 'OpenSans', Arial, Helvetica, sans-serif;
    background-color: ivory;
    margin: auto;
    margin-top: 3%;
    width: 60%;
    border: 3px solid rgb(102, 2, 18);
    border-radius: 15px;
    padding: 20px;
    }
.logo {
  display: flex;
  width: auto;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  /* -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222); */
  justify-content: center;
}
h1 {
  text-align: center;
}
    h2{
        font-size: 30px;
        font-weight: 800;
      }
    h5 {
        margin-top: 10px;
    }
    .box {
      padding: 10px;
    }
    
      p{
        font-size: 18px;
        font-weight: 300;
      }

      .box{
        padding: 20px 0px 20px 40px;
      }
      input[type=text] {
        margin-top: 10px;
        border: none;
      border-bottom: 1px solid grey;
      width: 80%;
      height: 2
      }

      /* input[type=date] {
        margin-top: 10px;
      } */

      textarea {
        border: solid grey 1px;
        width: 80%;
      }

      input[type=submit] {
        margin-top: 30px;
        background-color: #D91D1E;
        height:40px;
        width: 150px;
      }
      input[type=submit]:hover {
        background-color: grey;
        
        border: solid 1px;
      }

      button {
        background-color: red;
        color: white;
        padding: 5px;
        margin-top: 5px;
      }

      button:hover {
        background-color: greenyellow;
        color: darkgreen;
      }
      
      @media (max-width: 740px) {
        * {
          font-family: 'Raleway';
        }
        .container {
          background-color: #4e585c;
          width: 90%;
        }
        .logo {
          display: flex;
          width: auto;
          height: 50px;
          margin-left: auto;
          margin-right: auto;
          /* -webkit-filter: drop-shadow(5px 5px 5px #222);
          filter: drop-shadow(5px 5px 5px #222); */
          justify-content: center;
          padding-top: 5px;
        }
       
        h1 {
          text-align: center;
          font-size: 16px;
        }
        .box{
          padding: 10px 0px 10px 30px;
                 }
      }
      