* {
  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 {
  margin-left: 2%;
  margin-bottom: 2%;
  font-size: 16px;
  border-radius: 10px;

}

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

.btns:hover {
  background-color: #e32127;
  font-size: 16px;
  color: #ffffff;
  width: 10%;

}
.img{
  margin-left: 2%;
}
@media only screen and (max-width: 480px) {
  h1 {
    text-align: center;
  }

  .input {
    text-align: center;
    width: 96%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .btns {
    width: 96%;
    height: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2%;
  }
  .btns:hover {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  
  }
  .img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2%;
  }
}