/* header area style */
header h1 {
    color: #59A5FF;
    transition: 0.3s;
  }
  header h1:hover {
    color: #59A5FF;
  }
  .money-img{
    width: 80%;
    height: 70%;
  }
  /* input and button style  */
  input,
  button {
    border: 2px solid #59A5FF;
    border-radius: 5px;
    transition: 0.2s;
  }
  input:hover,
  button:hover {
    background-color: #fff !important;
    color: #59A5FF !important;
  }