/* 
  Paypal button stuff:
  Gold color: #ffc439,
  Hover color: filter: brightness(0.95), ends up being #f2ba36,
  SVG: paypal.svg (hehe),
  border radius: 4px,
*/

#paypal-button {
  background-color: #ffc439;
  border: 0px;
  border-radius: 4px;
  cursor: pointer;
  width: 500px;
}

#paypal-button:hover {
  filter: brightness(0.95);
}

#paypal-button img {
  height: 2em;
  padding: 0.7em 0;
}

@media (max-width: 555px) {
  #paypal-button {
    width: 100%;
  }
}