@import url(https://fonts.googleapis.com/css?family=Alex+Brush|Parisienne|PT+Serif|Rancho|Sacramento&display=swap);
/* Global Styles */
body, html {
  background-color: #fff;
  color: #000;
  font-family: 'PT Serif', serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  height: 100.1%;
}

@media (prefers-color-scheme: dark) {
  body, html {
    background-color: #000;
    color: #fff;
  }
}

h1, h2, h3, h4 {
  font-weight: normal;
}

h1 {
  color: rebeccapurple;
  font-size: 2.5rem;
  font-family: 'Parisienne', cursive;
  font-weight: normal;
  margin: 1.5rem auto .5rem;
}

h2 {
  color: #bbc;
  font-family: 'PT Serif', serif;
  font-size: 1.5rem;
  margin: 0 auto .5rem;
}

.page-container,
.page-section {
  max-width: 80rem;
  /* 1280px */
  margin: 0 auto;
}

.page-section {
  padding: 2rem; 
}
.page-section h1, .page-section h2 {
  text-align: center; 
}
.page-section.no-padding {
  padding: 0; 
}

.global-nav {
  background-color: rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4.5rem;
  padding-top: 1rem;
  text-transform: uppercase;
  z-index: 2;
}

.global-nav > a {
  color: rgb(223, 215, 142);
  padding: .5rem 1rem;
  text-decoration: none;
  display: inline-block;
  line-height: 2.5rem;
  transition: color 50ms ease-in-out;
}

.global-nav > a:hover {
  color: #fff;
}


.shimmer,
.global-nav > a:hover {
  text-align: center;
  color: rgba(189, 181, 114, 0.473);
  background: linear-gradient(to right, rgb(0, 0, 0), #fff 40%, #fff 70%, rgb(0, 0, 0));
  background-size: 125px 100%;
  background-clip: text;
  animation-name: shimmer;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: rgb(0, 0, 0);
}

@keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}


.section {
  min-height: 16rem;
  padding: 1rem;
}





.hero {
  background-color: #333;
  position: relative;
  height: 40rem;
  -webkit-font-smoothing: antialiased;
}

.hero--fullscreen {
  background-size: cover;
  height: 100vh;
  padding: 0;
}

.hero__bkrd {
  align-items: center;
  display: flex;
  height: 100vh;
  width: 100%;
  position: relative;
}

.hero__bkrd-item-container {
  display: flex;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0;
  transition: none;
}

.loaded .hero__bkrd-item-container {
  opacity: 1;
  transition: opacity 4s ease-in-out;
  transition-delay: 250ms;
}

#sign_in_form {
  opacity: 0;
  transform: scale(0.8);
}

.loaded #sign_in_form {
  opacity: 1;
  transform: scale(1.0);
  transition: all 400ms ease-in-out;
}

.hero__bkrd-item {
  width: 100%;
  object-fit: cover;
}

.hero__overlay {
  background-image: radial-gradient(rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7)), 
  radial-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3)), 
  linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.1) 67%, rgba(0, 0, 0, 1));
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  mix-blend-mode: multiply;
  transition: background-color 0.7s ease-in-out;
}
  .hero__overlay.--focused {
    background-color: rgba(0, 0, 0, 0.6);
}

.dark--hero__overlay {
  background-image: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  background-color: rgba(0, 0, 0, 0);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.hero__title,
.hero__subtitle {
  color: #fff;
  font-family: 'Parisienne', cursive;
  font-weight: 100;
  font-size: 3rem;
  text-align: center;
  text-shadow: black 1px 1px 20px;
}

.hero__subtitle {
  font-size: 2rem;
  font-family: inherit;
}

label {
  padding: .25rem;
  font-size: 1.25rem;
  overflow: hidden;
}

fieldset {
  border: 0;
}

.hero__content input {
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border-radius: .25rem;
  border: 0;
  box-shadow: inset 1px 1px 8px rgba(0,0,0,0.4),
              1px 1px 3px rgba(255,255,255,0.5);
  display: block;
  margin: .5rem auto;
  padding: 1rem;
  font-size: 1rem;
  text-align: center;
}

.hero__content button {
  background-color: #efefef;
  background-image: linear-gradient(180deg, rgb(95, 20, 192), #3b006b);
  color: #fff;
  border: 0;
  border-radius: .25rem;
  font-size: 1rem;
  padding: .75rem 1.25rem;
  margin-top: 1rem;
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
  box-shadow: inset 0px 0px 2px rgba(255,255,255,1),
              1px 1px 3px rgba(0,0,0,0.5);

}

.hero__content span {
  color: #fff;
  display: block;
  height: 1rem;
  margin-top: 1rem;
}
.hero__content button:active {
  background-color: #efefef;
  background-image: linear-gradient(0, rgb(95, 20, 192), #3b006b);
  color: #fff;
  border: 0;
  border-radius: .25rem;
  font-size: 1rem;
  padding: .75rem 1.25rem;
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
  box-shadow: inset 0px 0px 1px rgba(255,255,255,1),
              1px 1px 1px rgba(0,0,0,0.5);

}

.footer {
  box-sizing: border-box;
  color: #ccc;
  font-size: .75rem;
  min-height: 25vh;
  text-align: center;
  padding-bottom: 2rem;
}

.code-scanner {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

