html * {
  font-family: "Roboto", sans-serif;
}

body {
  background-color: #f7f5f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
}

/* Medium devices have margins */
@media only screen and (min-width: 768px) {
  body {
    width: 50%;
    margin: 0 auto;
  }
}

h1 {
  margin: 0;
  padding: 0;
}

p {
  font-size: 18px;
}

.responsive {
  width: 100%;
  height: auto;
}

.donate-button {
  background-color: #ad6770;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  margin: 10px 0;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.donate-button:hover {
  background-color: #693e44;
}

.donate-button:active {
  background-color: #693e44;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
