* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  h1{
    margin-left: 2%;
    margin-top: 2%;
    margin-bottom: 2%;
    font-size: 30px;
    font-weight: 500;
  }
.input input{
  display: block;
  margin-left: 2%;
  margin-bottom: 2%;
  font-size: 16px;
}
.txt{
  display: block;
  resize: none;
  font-size: 16px;
  width: 30%;
  height: 200px;
} 

canvas {
  margin-left: 2%;
  margin-bottom: 2%;
  height: 175px;
  border-style: solid;
  border-width: 1px;
  border-color: black;
  border-radius: 10px;

}

.input select{
  width: 30%;
  height: 30px;
  display: block;
  margin-left: 2%;
  margin-top: 2%;
  margin-bottom: 2%;
  color: rgb(0, 0, 0);
  font-size: 16px;
  border-radius: 10px;
}
.input textarea{
  margin-left: 2%;
  margin-bottom: 2%;
  color: rgb(0, 0, 0);
  border-radius: 10px;
}
.input label{
  display: block;
  padding-top: 2%;
  margin-left: 2%;
  color: rgb(0, 0, 0);
  border-top: 1px solid #c5c5c5;
}

.btns{
  background-color: #019267;
  font-size: 16px;
  color: #ffffff;
  width: 20%;
  height: 30px;
  border-radius: 10px;
}
.btns:hover{
  background-color: #e32127;
  font-size: 16px;
  color: #ffffff;
  width: 20%;

}
h1{
  margin-left: 2%;
  margin-top: 2%;
  margin-bottom: 2%;
}


@media only screen and (max-width: 480px) {
  h1{
    text-align: center;
  }
  
  .txt{
  width: 96%;
  height: 150px;
  margin-left: auto;
margin-right: auto;
  } 
  .btns{
    width: 96%;
    height: 50px;
margin-left: auto;
margin-right: auto;
  }
  .btns:hover{
    width: 96%;
    height: 50px;
margin-left: auto;
margin-right: auto;
  }

  .input select{
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }

  canvas {
    width: 96%;

margin-left: 2% ;
margin-right: auto;
  }
}