@font-face {
  font-family: "EnglandSignature";
  src: url("/assets/fonts/EnglandSignature-GOK1q.otf") format("opentype");
}

/* Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  align-items: center;
  background-image: url('../assets/light_house_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  color: #3c2e2b;
  display: flex;
  font-family: sans-serif;
  font-size: 18px;
  justify-content: center;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  height: 75%;
  text-align: center;
}

h1 {
  font-family: "EnglandSignature", serif;
  font-size: 3.5rem;
  font-weight: 100;
  text-shadow:
      0 0 7px #fff,
      0 0 10px #fff,
      0 0 21px #fff,
      0 0 42px #ffffff,
      0 0 82px #ffffff,
      0 0 92px #ffffff;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  text-shadow:
      0 0 7px #fff,
      0 0 10px #fff,
      0 0 21px #fff,
      0 0 42px #ffffff,
      0 0 82px #ffffff,
      0 0 92px #ffffff;
}

footer {
  align-items: center;
  background-color: black;
  bottom: 0;
  color: white;
  display: flex;
  font-family: "Menlo", monospace;
  font-size: 0.8rem;
  height: 50px;
  justify-content: center;
  padding: 10px;
  position: fixed;
  text-align: center;
  width: 100%;
}

/* Media queries (breakpoints) */
@media only screen and (min-width: 1024px) {
  main {
    height: 60%;
    max-width: 800px;
  }
}