@charset "UTF-8";
 
* {
  margin: 0;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
} 

/* h1{
    text-align: center;
    margin: 30px;
}

h1 a{
    
    list-style: none;
    text-decoration: none;
   
    color: #000;
}
h1 a img{
 width: 50px;
 height: 50px;

} */

.m-plus-1p-regular {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

   body{
    width: 100%; 
    height: 100vh;
     display: flex; 
    align-items: center; 
    justify-content: center; 
   }
  .contact-form{
    
    border: 1px solid #000;
     padding: 50px 30px; 
  } 
  .title{
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  form{
    width: 460px;
    margin: 0 auto;
  }
  .item{
    overflow: hidden;
    margin-bottom: 20px;
  }
  .label{
    float: left;
    margin-right: 20px;
    width: 135px;
    border-left: 5px solid #226cdb;
    padding-left: 10px;
  }
  inputs{
    float: left;
    width: 300px;
  }
  input[type="text"],
  input[type="email"] {
    border: 1px solid #aaa;
    padding: 10px;
    font-size: 15px;
    border-radius: 5px;

  }
  textarea{
    border: 1px solid #aaa;
    border-radius: 5px;
    padding: 10px;
    height: 160px;
    width: 300px;
    font-size: 15px;
  }
  
  .button-area{
    text-align: center; 
    .submit {
        background-color: #66beead9;
        bottom: none;
        padding: 10px 20px;
        color: white;
        font-size: 17px;
        font-weight: bold;
        border-radius: 5px;
        margin: 0 5px;
        box-shadow: 1px 1px 3px black;
        cursor: pointer;
    }
    .reset {
        background-color: #aaa;
        bottom: none;
        padding: 10px 20px;
        color: white;
        font-size: 17px;
        font-weight: bold;
        border-radius: 5px;
        margin: 0 5px;
        box-shadow: 1px 1px 3px black;
        cursor: pointer;
    }
  }

  /* .box{
    
     align-items: center;    
}  

footer{
   text-align: center;
    padding: 20px;    
} */

@media (max-width:768px){
   
    .contact-form{
      display: block;
  } 

  form{
    width: 460px;
    margin: 0 auto;
  }

  h1{font-size: 25px;}
}

@media (max-width:430px){
   
    .contact-form{
      display: block;
  
    }
  form{
    width: 340px;
    height: auto;
  }
   
  }
  
  
  @media (max-width:375px){

    form{
      width: 340px;
      height: auto;
      
    }

  }