:root {
  --jumbotron-padding-y: 3rem;
}

body {
  font-family: "Georgia", serif;
}

.jumbotron {
  padding-top: var(--jumbotron-padding-y);
  padding-bottom: var(--jumbotron-padding-y);
  margin-bottom: 0;
  background-color: #fff;
}

.jumbotron p:last-child {
  margin-bottom: 0;
}

.jumbotron-heading {
  font-weight: 300;
}

.jumbotron .container {
  max-width: 40rem;
}

footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer p {
  margin-bottom: .25rem;
}

footer a {
  color: #555;
  text-decoration: none;
}

footer a:hover {
  color: #333;
  text-decoration: underline;
}

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }

.card {
  border: 2px solid white;
  cursor: pointer;
}

.card:hover {
  border: 2px solid lightblue;
}

/* Sticky mobile CTA spacing */
@media (max-width: 767px) {
  body { padding-bottom: 55px; }
}