@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v40-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "Brittany Signature";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/BrittanySignature.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  background: #292929;
}

#banner {
  z-index: 7;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  min-height: 100px;
  position: relative;
}
#banner > div:first-child {
  width: 100%;
  height: 100%;
  background: url("../images/background.jpg") no-repeat center center;
  background-size: cover;
  filter: blur(3px);
  position: absolute;
  top: 0;
  left: 0;
}
#banner > div:nth-child(2) {
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}
#banner > svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: auto;
  transform: translate(-50%, -50%);
  fill: white;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #292929;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 25px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 5px;
}
nav ul li a {
  text-decoration: none;
  color: white;
  display: inline-block;
  padding: 20px 10px;
  font-size: 1.2em;
  background: #3a3a3a;
}
nav ul li a:hover {
  background: #cfcfcf;
  color: black;
}
nav svg {
  height: 67px;
  width: auto;
  fill: white;
  padding: 10px 0;
}

nav + .content {
  padding-top: 50px;
}

.content {
  background: white;
}
.content.noheader > div {
  padding: 25px 10px 5px 10px;
}
.content header {
  padding: 50px 0;
  text-align: center;
}
.content header * {
  font-family: "Brittany Signature", serif;
}
.content header h1 {
  font-size: 3.2em;
}
.content header h2 {
  font-size: 2.5em;
}
.content > div {
  padding: 10px 10px 50px 10px;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.content > div ul.two {
  columns: 2;
}
.content a {
  color: black;
}
.content a:hover {
  text-decoration: none;
}
.content:not(:last-child):after {
  content: "";
  width: 100%;
  height: 2px;
  background: #292929;
  display: block;
  transform: rotate(-2deg);
}
.content:not(:last-child):nth-child(2n):after {
  transform: rotate(2deg);
}

/*# sourceMappingURL=main.css.map */
