/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
  * Don't show links that are fragment identifiers,
  * or use the `javascript:` pseudo protocol
  */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
  * Printing Tables:
  * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
  */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/***** CUSTOM *****/
/*
@import url('https://fonts.googleapis.com/css?family=Montserrat:500');
*/
/* ----- C O L O R S ----- */
:root {
  --lcc-yellow: #FF9944;
  --lcc-dark-yellow: #F8D820;
  --soft-black: #1A1A1A;
  --dark-background: #3B3738;
  --light-background: #545050;
  --lavender: #AAAAFF;
  --off-white: #FEFEFEEE;
}

/* ----- ^ C O L O R S ----- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Bahnschrift", "Deutsch", "Arial";
}

body {
  background-color: var(--dark-background);
}

h1 {
  margin: 12px;
  font-size: 5.2vw;
  text-align: center;
  color: white;
}

p {
  margin: 18px 15% 4% 15%;
  font-size: 2.6vw;
  max-width: 1000px;
  color: var(--off-white);
}

li {
  font-size: 16px;
  color: #EDF0F1;
  text-decoration: none;
}

a {
  /*font-family: "Montserrat", sans-serif;*/
  font-weight: bold;
  font-size: 16px;
  color: #EDF0F1;
  text-decoration: none;
}
a:link {
  color: rgb(155, 193, 255);
}
a:visited {
  color: rgb(218, 170, 255);
}
a:hover {
  color: rgb(110, 165, 255);
}

button {
  /*font-family: "Montserrat", sans-serif;*/
  font-weight: bold;
  font-size: 16px;
  color: #EDF0F1;
  text-decoration: none;
}

hr {
  padding: 0;
  border: 0;
  height: 0.2vw;
  width: 45%;
  margin: auto;
  background-image: linear-gradient(to right, hsla(0, 0%, 100%, 0) 0%, hsla(0, 0%, 100%, 0.013) 4.3%, hsla(0, 0%, 100%, 0.049) 8.75%, hsla(0, 0%, 100%, 0.104) 13.25%, hsla(0, 0%, 100%, 0.175) 17.8%, hsla(0, 0%, 100%, 0.259) 22.3%, hsla(0, 0%, 100%, 0.352) 26.65%, hsla(0, 0%, 100%, 0.45) 30.85%, hsla(0, 0%, 100%, 0.55) 34.8%, hsla(0, 0%, 100%, 0.648) 38.45%, hsla(0, 0%, 100%, 0.741) 41.7%, hsla(0, 0%, 100%, 0.825) 44.5%, hsla(0, 0%, 100%, 0.896) 46.8%, hsla(0, 0%, 100%, 0.951) 48.55%, hsla(0, 0%, 100%, 0.987) 49.6%, hsl(0, 0%, 100%) 50%, hsla(0, 0%, 100%, 0.987) 50.4%, hsla(0, 0%, 100%, 0.951) 51.45%, hsla(0, 0%, 100%, 0.896) 53.2%, hsla(0, 0%, 100%, 0.825) 55.5%, hsla(0, 0%, 100%, 0.741) 58.3%, hsla(0, 0%, 100%, 0.648) 61.55%, hsla(0, 0%, 100%, 0.55) 65.2%, hsla(0, 0%, 100%, 0.45) 69.15%, hsla(0, 0%, 100%, 0.352) 73.35%, hsla(0, 0%, 100%, 0.259) 77.7%, hsla(0, 0%, 100%, 0.175) 82.2%, hsla(0, 0%, 100%, 0.104) 86.75%, hsla(0, 0%, 100%, 0.049) 91.25%, hsla(0, 0%, 100%, 0.013) 95.7%, hsla(0, 0%, 100%, 0) 100%);
  margin-bottom: 5.5%;
  margin-top: 5.5%;
  font-weight: bold;
}

header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 2%;
}

footer {
  font-family: "Arial";
  font-size: 14px;
  display: flex;
  justify-content: center;
  padding: 15px;
  color: rgba(0, 0, 0, 0.8);
  background-color: var(--lavender);
  max-width: 1080px;
  margin: auto;
}

button {
  padding: 11px 20px;
  background-color: #2A2A2A;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease 0s;
}

button:hover {
  background-color: rgb(114, 137, 218);
  filter: saturate(150%);
}

ul#team {
  margin: 18px 15% 4% 15%;
  font-size: 5vw;
  max-width: 1000px;
  color: rgba(255, 255, 255, 0.9);
}

li#team {
  font-size: 2.5vw;
}


a#team {
  font-size: 3vw;
}

model-viewer {
  width: 100%;
  height: 600px;
  margin: 0 auto;
}

.centered-button {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.navigation-bar li {
  display: inline-block;
  padding: 0px 12px;
}
.navigation-bar li a {
  transition: all 0.25s ease 0s;
}
.navigation-bar li {
  color: #88AACC;
}
.navigation-bar a:link {
  color: var(--off-white);
}
.navigation-bar a:visited {
  color: var(--off-white);
}
.navigation-bar a:hover {
  /* color: #88AACC; */
  color: var(--lavender);
}

.navigation-bar-logo {
  width: 120px;
  margin-right: auto;
  cursor: pointer;
}

.lcc-logo {
  margin-right: auto;
  font-size: 18px;
  cursor: pointer;
  color: #ffb144;
  white-space: nowrap;
  animation: color-change 12s infinite;
}

.logo {
  margin-right: auto;
}

.full-width-image {
  width: 100%;
  height: 52vw;
  -o-object-fit: cover;
     object-fit: cover;
}

#starfall-card {
  height: 54vw;
}

.full-width-video {
  width: 100%;
  height: 52vw;
  background-color: var(--light-background);
  -o-object-fit: cover;
     object-fit: cover;
}

.vignette {
  position: relative;
}

.vignette img {
  display: block;
}

.vignette::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: 0 0 80px 20px rgb(0, 0, 0) inset;
}

.light-vignette {
  position: relative;
}

.light-vignette img {
  display: block;
}

.light-vignette::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: 0 0 50px 5px rgb(0, 0, 0) inset;
}

.transparent-black {
  position: relative;
}

.transparent-black img {
  display: block;
}

.transparent-black::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 80px 20px rgb(0, 0, 0) inset;
}

.wizard-list {
  margin: 15px 20% 4% 20%;
}

.secondary-color {
  background-color: var(--lavender);
}

.wizard-description {
  margin: 5px 15% 15px 15%;
  font-size: 140%;
  max-width: 1000px;
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0px;
}

.side-by-side {
  font-size: 100%;
  max-width: 1080px;
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-gap: 0px;
  margin-bottom: 40px;
}

.centered-image {
  display: block;
  margin: auto;
}

.reflection {
  filter: drop-shadow(0 0 0.75rem var(--dark-background));
  -webkit-box-reflect: below 2px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(80%, transparent), to(rgba(74, 74, 74, 0.1333333333)));
}

.blur {
  background: rgba(0, 0, 0, 0.5647058824);
  width: 100%;
  height: 54.5%;
  position: relative;
  overflow: hidden;
  filter: blur(24px);
}

.discord-button {
  margin-left: 16px;
}

.discord-button::after {
  content: "Join the Discord";
}

.tts-mod-link {
  color: rgb(110, 165, 255);
  transition: all 0.25s ease 0s;
}

.tts-mod-link:hover {
  color: rgba(114, 137, 218, 0.85);
  filter: saturate(150%);
}

.social-media-icon {
  width: 7.5vw;
  padding: 5%;
  transition: all 0.25s ease 0s;
}

.social-media-icon:hover {
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.1333333333)) saturate(200%);
}

#main {
  max-width: 1080px;
  margin: auto;
  background-color: var(--light-background);
}

#header-list {
  justify-content: space-between;
}

.gimmie-that-discord-invitation {
  margin-top: 4vw;
  margin-bottom: 7.5vw;
}

#gimmie-that-discord-invitation {
  height: 5vw;
  width: 28vw;
  font-size: 1.5vw;
}

#gimmie-that-discord-invitation::after {
  content: "Gimmie That Discord Invitation";
}

.span-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.iframe-container-youtube {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.iframe-container-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Changey color logo! */
@keyframes color-change {
  0% {
    color: var(--lcc-yellow);
  }
  50% {
    color: var(--lcc-dark-yellow);
  }
  54% {
    color: rgb(255, 255, 255);
  }
  58% {
    color: var(--lcc-dark-yellow);
  }
  100% {
    color: var(--lcc-yellow);
  }
}
/* Maxes */
@media (min-width: 1080px) {
  h1 {
    font-size: 56px;
  }
  p {
    font-size: 28px;
  }
  li#team {
    font-size: 27px;
  }
  a#team {
    font-size: 32px;
  }
  .social-media-icon {
    width: 80px;
  }
  .full-width-image {
    height: 590px;
  }
  .full-width-video {
    height: 590px;
  }
  #starfall-card {
    height: 590px;
  }
  .gimmie-that-discord-invitation {
    margin-top: 50px;
    margin-bottom: 85px;
  }
  #gimmie-that-discord-invitation {
    height: 55px;
    width: 310px;
    font-size: 18px;
  }
}
/* TODO:
 * Target --
 * 360
 * 390
 * 393
 * 412
 * 430 iphone 15 pro max
 * 428
 * 375
 */
@media (max-width: 925px) {
  .lcc-logo {
    font-size: 18px;
  }
  .navigation-bar-li {
    font-size: 15px;
  }
  #gimmie-that-discord-invitation {
    height: 6vw;
    width: 32vw;
    font-size: 1.8vw;
  }
}
@media (max-width: 768px) {
  .wizard-description {
    font-size: 120%;
    grid-gap: 4px;
  }
  .lcc-logo {
    font-size: 14px;
  }
  .navigation-bar-li {
    font-size: 14px;
  }
  .discord-button::after {
    content: "Discord";
  }
}
@media (max-width: 625px) {
  button {
    padding: 11px 18px;
  }
  model-viewer {
    height: 500px;
  }
  .lcc-logo {
    font-size: 14px;
  }
  .wizard-description {
    font-size: 110%;
    grid-gap: 12px;
  }
  .navigation-bar-li {
    font-size: 13px;
  }
  .navigation-bar li {
    padding: 0px 6px;
  }
  .gimmie-that-discord-invitation {
    margin-top: 6vw;
    margin-bottom: 8vw;
  }
  #gimmie-that-discord-invitation {
    height: 7vw;
    width: 35vw;
    font-size: 1.9vw;
  }
}
@media (max-width: 570px) {
  h1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .lcc-logo {
    font-size: 12px;
  }
  model-viewer {
    height: 450px;
  }
  .wizard-description {
    font-size: 100%;
  }
  .discord-button {
    padding: 8px 12px;
    font-size: 12px;
    margin-left: 4px;
  }
  #gimmie-that-discord-invitation {
    height: 7.5vw;
    width: 37vw;
    font-size: 2vw;
  }
}
@media (max-width: 520px) {
  .lcc-logo {
    font-size: 11px;
  }
  .navigation-bar-li {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  #lcc-description {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .lcc-logo {
    font-size: 12px;
  }
  .navigation-bar li {
    padding: 0px 4px;
  }
  .navigation-bar-li {
    font-size: 9px;
  }
  #nav-home {
    display: none;
  }
}
@media (max-width: 410px) {
  #lcc-description {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .lcc-logo {
    font-size: 10px;
  }
  .navigation-bar li {
    padding: 0px 4px;
  }
  .navigation-bar-li {
    font-size: 9px;
  }
  #nav-home {
    display: none;
  }
}
@media (max-width: 400px) {
  .lcc-logo {
    font-size: 9px;
  }
}
/* iPhone X */
@media (max-width: 376px) {
  .discord-button {
    padding: 6px 10px;
    margin-left: 0px;
  }
  .navigation-bar li {
    padding: 0px 1px;
  }
  model-viewer {
    height: 400px;
  }
  .wizard-description {
    font-size: 80%;
    grid-gap: 14px;
  }
  .wizard-model {
    width: 120px;
    padding: 0px 5px;
  }
  #starfall-description {
    font-size: 100%;
  }
  #nav-about {
    display: none;
  }
  .social-media-icon {
    width: 16vw;
    padding: 10%;
  }
  .gimmie-that-discord-invitation {
    margin-top: 8vw;
    margin-bottom: 10vw;
  }
  #gimmie-that-discord-invitation {
    height: 8.5vw;
    width: 34vw;
    font-size: 2.8vw;
  }
  #gimmie-that-discord-invitation::after {
    content: "Discord Invitation";
  }
}
/* iPhone 5 */
@media (max-width: 320px) {
  model-viewer {
    height: 300px;
  }
  .wizard-model {
    width: 100px;
    padding: 0px 5px;
  }
  .wizard-description {
    font-size: 75%;
  }
  .discord-button {
    padding: 6px 8px;
    font-size: 10px;
  }
  #gimmie-that-discord-invitation {
    height: 9vw;
    width: 36vw;
    font-size: 2.8vw;
  }
}
@media (max-width: 320px) {
  .navigation-bar-li {
    display: none;
  }
  #gimmie-that-discord-invitation {
    height: 12vw;
    width: 39vw;
    font-size: 2.9vw;
  }
}/*# sourceMappingURL=main.css.map */