/* The New Reset */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

a, button {
  cursor: revert;
}

ol, ul, menu {
  list-style: none;
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Variables */
/* SCSS @rules */
/* Typography */
body {
  font-family: Century Gothic, sans-serif;
  font-size: 1.4rem;
  width: 100%;
  color: #fff;
}

h1 {
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
}

h2 {
  font-size: 2.7rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 1em;
}

h3 {
  font-size: 2.4rem;
  color: #fff;
  font-weight: normal;
  margin-bottom: 0.5em;
}

p ~ h3 {
  margin-top: 1em;
}

h4 {
  font-size: 1.8rem;
  color: #fff;
}

h5 {
  font-size: 1.6rem;
  color: #fff;
}

h6 {
  font-size: 1.4rem;
  color: #fff;
}

p {
  font-size: 1.4rem;
  color: #fff;
}

p ~ div {
  margin-top: 2em;
}

ul {
  list-style: outside;
  margin-left: 1em;
  padding-left: 1em;
}

ol {
  list-style-type: decimal;
  margin-left: 1em;
  padding-left: 1em;
}

li {
  font-size: 1.4rem;
}

a {
  color: #00B07F;
}

a:hover {
  color: #FF5000;
  text-decoration: none;
}

.brandname {
  font-family: CapitolCity, sans-serif;
  font-weight: normal;
}

.link {
  color: #00B07F;
}

body {
  background-color: #000;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100vw;
  height: 100svh;
}

.overflow_hidden {
  overflow-x: hidden;
}

.background-image {
  background-image: url("/img/background_nightgolf.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.videoLoop {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  margin: 50px 10px;
  text-align: center;
}
.header h1 {
  text-align: center;
}
.header h2 {
  text-align: center;
}

.huge {
  font-size: 4rem;
  margin-top: 70px;
}
@media (min-width: 768px) {
  .huge {
    font-size: 7rem;
    margin-top: 100px;
  }
}
@media (min-width: 992px) {
  .huge {
    font-size: 5em;
  }
}
.columns {
  position: absolute;
  top: 200px;
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 390px) {
  .columns {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .columns {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.download_item {
  margin-bottom: 50px;
}

.fileIcon {
  box-shadow: 10px 10px 19px 0px rgba(0, 0, 0, 0.5);
}

.caption {
  margin-top: 10px;
}

.mobileOnly {
  display: inline-block;
}
@media (min-width: 768px) {
  .mobileOnly {
    display: none;
  }
}

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