button{
    display: inline-block;
    background-color: #24293E;
    padding:10px;
    border:none;
    color:#F8C617;
    font-size: 1.1em;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition:transform 0.3s ease;
    cursor: pointer;
  }
  button:hover {
    background-color: #171b22;
    color: #F8C617;
    transform:scale(1.05);
  }
  @media only screen and (max-width:400px){
    button{
      padding-left:3px;
      padding-right:3px;
    }
  }
