html {
  font-size: 62.5%
}
body {
  padding: 0;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  font-family: sans-serif;
  font-size: 1.8rem
}
main {
  padding: 0 24px
}
:root {
  --background: #343630;
  --highlight: #a4c660;
  --alt: #60c69a;
  --cta: #C56A48;
  --text: #e2e7d8;
  --headingfont: 'Fredericka the Great',serif;
  --bodyFont: 'Montserrat',sans-serif
}
::-moz-selection {
  background: var(--alt);
  color: var(--text)
}
::selection {
  background: var(--alt);
  color: var(--text)
}
body {
  background-color: var(--background);
  background-image: url(../../img/background-3e.png);
  background-attachment: fixed;
  background-position: center bottom;
  background-size: 100%;
  background-repeat: no-repeat;
  color: var(--text);
  font-family: var(--bodyFont)
}
h1,
h2,
h3,
h4 {
  color: var(--text);
  font-family: var(--headingfont);
  margin-top: 0
}
h1 {
  color: var(--text);
  text-align: center;
  opacity: .15
}
h2 {
  color: var(--text)
}
.login-form {
  margin: auto;
  background: rgba(42,43,38,.93);
  padding: 24px;
  border: 4px solid var(--text);
  border-radius: 12px
}
.login-form header {
  margin-bottom: 48px
}
.login-form h2,
.login-form h3 {
  color: var(--text);
  opacity: .6;
  margin: 0
}
.login-form p {
  display: none
}
.login-form form {
  padding: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin: 24px auto
}
.login-form form label {
  font-size: .8em
}
.login-form form input[type=password] {
  -webkit-appearance: none;
  background: 0 0;
  border: none;
  outline: 0;
  border-bottom: 1px solid var(--text)
}
.login-form form button {
  border: none;
  background: var(--cta);
  -webkit-appearance: none;
  border-radius: .5em;
  margin: 12px 0;
  padding: .5em 0
}
.login-form form button:hover {
  background: rgba(197,106,72,.8)
}
.login-form form .errorMsg {
  font-size: .8em;
  color: var(--highlight)
}
@media (min-width:600px) {
  h1 {
    font-size: 6vw
  }
  h2 {
    font-size: 4.5vw
  }
}
a {
  color: var(--highlight)
}
a.visited {
  color: var(--alt)
}
a:hover {
  color: #fff
}
main {
  padding: 1.5em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh
}
dl.sections {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column
}
dl.sections dt {
  font-family: var(--headingfont);
  font-size: 4.5vw;
  text-align: center
}
@media (max-width:700px) {
  dl.sections dt {
    font-size: 36px
  }
}
dl.sections dd {
  margin: 2em 0 3em
}
dl.sections .sections-buttons {
  list-style-type: none;
  padding-left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  margin: auto
}
@media (max-width:500px) {
  dl.sections .sections-buttons {
    -ms-flex-direction: column;
    flex-direction: column
  }
}
dl.sections .sections-buttons li {
  -ms-flex: 1 1 50%;
  flex: 1 1 50%
}
@media (max-width:500px) {
  dl.sections .sections-buttons li {
    margin: 1em 0
  }
}
dl.sections .sections-buttons li a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 200px;
  min-height: 200px;
  padding: .5em;
  margin: auto;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  background-color: rgba(52,54,48,.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--text);
  border-radius: .5em;
  text-decoration: none
}
dl.sections .sections-buttons li a .embed {
  margin: auto;
  margin-top: 40px
}
dl.sections .sections-buttons li a .embed svg {
  height: 60px
}
dl.sections .sections-buttons li a.disabled:hover {
  color: var(--highlight)
}
dl.sections .sections-buttons li a.disabled .embed svg {
  opacity: .3
}
dl.sections .sections-buttons li a b {
  font-weight: 400;
  text-align: center;
  margin-top: auto
}
dl.sections .sections-buttons li a span.comingsoon {
  font-size: .7em;
  display: block;
  position: absolute;
  top: 2.1em;
  right: -2.9em;
  color: var(--text);
  background: var(--cta);
  padding: .5em 3em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-font-smoothing: subpixel-antialiased
}
dl.sections .sections-buttons li a span.comingsoon.inprogress {
  background: var(--alt);
  color: var(--background)
}