html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 90vh;
  background-color: #000;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  padding: 2rem;
}

main {
  flex: 1; /* <-- this makes main expand to fill available vertical space */
  max-width: 600px;
  margin: 2rem auto;
}

.logo {
  width: 140px;
  margin: 2rem auto 0;
  display: block;
}

h1.cinzel {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  margin: 0 0 1rem 0;
}

h2 {
  font-size: 1.5rem;
  margin: 1rem 0 3rem 0;
}

.subhead {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}

blockquote {
  font-style: italic;
  margin: 4rem 2rem;
  font-size: 1.4rem;
}

.button {
  display: inline-block;
  position: relative;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  background: #f2f2f2;
  color: #000;
  cursor: pointer;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  box-shadow: -6px 6px 0 #7f1d1d; /* subtle blood red drop */
  border: 0px solid #7f1d1d;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.button:hover {
  transform: translateX(-1px) translateY(1px);
  box-shadow: -5px 5px 0 #7f1d1d;
  background: #fff;
}

.button:active {
  transform: translateX(-3px) translateY(3px);
  box-shadow: -3px 3px 0 #7f1d1d; /* disappears into the base */
}

footer {
  margin-top: 2rem;
  font-size: .95rem;
  color: #888;
}
