/*
:root {
  color-scheme: light dark;
  --special-text-color: hsla(60, 100%, 50%, 0.5);
  --border-color: black;
}

@media (prefers-color-scheme: dark) {
  :root {
    --special-text-color: hsla(60, 50%, 70%, 0.75);
    --border-color: white;
  }
}*/

html {
  font-family: "Avenir Heavy", "League Spartan", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol” Oxygen, Ubuntu, Cantarell, Open Sans", "Helvetica Neue", sans-serif;
  text-rendering: optimizeLegibility;
  font-variant-ligatures: common-ligatures;
  font-optical-sizing: auto;

  background: url(../img/CoastStarlight-10.jpeg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  color: #ffffff;
}

header {
  width: 100%;
  height: 25%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

header h1 {
 font-size: 6rem;
 margin-bottom: 0;
}

header h2 {
  font-size: 2rem;
}

footer p {
  font-size: 0.75rem;
}

a {
  color: inherit;
  text-decoration: none;
}