@import url("https://fonts.googleapis.com/css2?family=Niconne&family=Raleway:ital,wght@0,500;0,600;1,500;1,600&display=swap");
html, body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background-color: #11161C;
  font-family: "Raleway", "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

h1, h2, h3 {
  font-weight: normal;
  font-family: "Niconne", cursive;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 1em;
  margin-bottom: 0.25em;
}

h1 {
  font-size: 3em;
}

a {
  color: #FFF3C4;
  text-decoration: underline;
}
a:hover, a:focus-visible {
  color: #FADB5F;
  text-decoration: underline;
}
a:active {
  color: white;
}

header {
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 64px;
  top: 0;
  left: 0;
  display: grid;
  backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  background: rgba(22, 29, 36, 0.6);
  border-image: linear-gradient(165deg, #F0B429, #CB6E17) 1;
}
header > .LinearLayout {
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}
header .MarkdownView {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header .MarkdownView p {
  text-align: right;
  font-size: 1.5em;
  margin: 0;
}
header .MarkdownView a {
  font-weight: 300;
  text-decoration: none;
}
header .MarkdownView a:hover, header .MarkdownView a:focus-within {
  text-decoration: underline;
}

.Footer {
  padding: 32px 16px 8px 16px;
  background-color: #11161C;
}

.ImageView {
  user-select: none;
}

.ImageView.DropShadow {
  filter: drop-shadow(0px 2px 16px rgba(0, 0, 0, 0.3));
}

.Button {
  margin: 0;
  user-select: none;
  padding: 12px 16px 10px 16px;
  line-height: 1;
  font-size: 2.25em;
  color: #6C1708;
  border-radius: 4px;
  text-decoration: none;
  font-family: "Niconne", cursive;
  background: linear-gradient(135deg, #FADB5F, #F7C948);
  transition: filter 0.15s;
}
.Button:hover, .Button:focus-visible {
  color: #6C1708;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  filter: brightness(80%) hue-rotate(-7.5deg);
}
.Button:active {
  color: #6C1708;
  text-decoration: none;
  filter: brightness(105%) hue-rotate(2.5deg);
}

.DavicWebLoop img {
  opacity: 0.75;
  border-radius: 6px;
  filter: saturate(0%) brightness(60%) contrast(150%) sepia(200%) hue-rotate(10deg);
  transition: filter 0.15s, opacity 0.15s;
}
.DavicWebLoop a {
  background-color: #1F2933;
  border-radius: 8px;
  padding: 8px;
}
.DavicWebLoop a:hover img, .DavicWebLoop a:focus-visible img {
  filter: none;
  opacity: 1;
}

body.Layout-Landing {
  text-align: center;
  color: white;
  background-size: cover;
  background-color: transparent;
  background-blend-mode: multiply;
  background-position: center 25%;
  background-image: url("/media/background_landing_grayscale.jpg"), linear-gradient(135deg, #161D24, #323F4B 20%, #CB6E17 80%, #F7C948);
}
body.Layout-Landing main {
  min-height: calc(100vh - 4px);
  height: max-content;
  max-height: 1500px;
}
body.Layout-Landing main::before {
  content: " ";
  display: block;
  width: 100%;
  height: 4px;
  background-image: linear-gradient(165deg, #F7C948, #CB6E17);
}
body.Layout-Landing main .LinearLayout {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px;
  padding-top: clamp(52px, calc(-140px + 30vh), 90px);
}
body.Layout-Landing main .LinearLayout h1 {
  text-shadow: 0px 1px 12px rgba(252, 229, 136, 0.3);
}
@media screen and (max-width: 900px) {
  body.Layout-Landing main .LinearLayout h1 {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 400px) {
  body.Layout-Landing main .LinearLayout h1 {
    font-size: 2em;
  }
}
body.Layout-Landing main .ImageView {
  width: 80vw;
}
body.Layout-Landing main .MarkdownView {
  text-shadow: 0px 0px 8px #8D2B0B, 0px 0px 8px rgba(141, 43, 11, 0.5);
}
body.Layout-Landing main .MarkdownView p {
  opacity: 0.9;
  color: #FFF3C4;
}
body.Layout-Landing main .MarkdownView.Age-Warning p {
  color: #FFFBEA;
  margin-bottom: 12px;
}
body.Layout-Landing main .MarkdownView.Contact p {
  opacity: 0.75;
}
body.Layout-Landing main .Button.CTA {
  margin-top: max(80px, calc(-550px + 80vh));
}