@import url('https://fonts.googleapis.com/css?family=Pinyon+Script');

:root {
  --tiffanyBlueColor: #81d8d0;
  --goldColor: rgb(231, 182, 110);
  --greenColor: #256E5D;
  --headingColor: black;
  --accentColor: var(--goldColor);
  --linkColor: var(--greenColor);
  --bodyBackgroundColor: white;
}

body {
  background-color: var(--bodyBackgroundColor);
  margin: 0 auto;
  font-family: serif;
  height: 100%;
  max-width: 380px;
}

header {
  border-top: 0.5em solid var(--accentColor);
  padding: 1em 0;
  text-align: center;
}

hr {
  border-top: 0.125em solid var(--accentColor);
  border-bottom: none;
  border-left: none;
  border-right: none;
}

main {
  padding: 1em 1em;
}

main a,
main a:active,
main a:visited {
  color: var(--linkColor);
}

h1, h2, h3 {
  color: var(--headingColor);
  font-family: 'Pinyon Script', cursive;
  font-weight: normal;
  text-align: center;
}

.cursive {
  font-family: 'Pinyon Script', cursive;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 32px;
}

img.banner {
  width: 100%;
  max-width: 340px;
  display: block;
  margin: 0 auto;
}

.text-centered {
  text-align: center;
}

.text-muted {
  opacity: 0.5;
}
