/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.loadingScreen {
  position: fixed;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  z-index: 1000;
}

.loader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 6rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  animation: pulsOut 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.75));
}

.loader:before {
  width: 100%;
  padding-bottom: 100%;
  box-shadow: inset 0 0 0 1rem #fff;
  animation-name: pulsIn;
}

.loader:after {
  width: calc(100% - 2rem);
  padding-bottom: calc(100% - 2rem);
  box-shadow: 0 0 0 0 #fff;
}

@keyframes pulsIn {
  0% {
    box-shadow: inset 0 0 0 1rem #fff;
    opacity: 1;
  }
  50%, 100% {
    box-shadow: inset 0 0 0 0 #fff;
    opacity: 0;
  }
}
@keyframes pulsOut {
  0%, 50% {
    box-shadow: 0 0 0 0 #fff;
    opacity: 0;
  }
  100% {
    box-shadow: 0 0 0 1rem #fff;
    opacity: 1;
  }
}
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.fader,
.fader2 {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  transition: all 0.4s ease-in;
  pointer-events: none;
}
.fader.active,
.fader2.active {
  opacity: 1;
  background-color: black;
  pointer-events: all;
}

.fader2.show {
  opacity: 1;
  pointer-events: all;
  -webkit-backdrop-filter: grayscale(100%);
          backdrop-filter: grayscale(100%);
}

.fader {
  z-index: 200;
}

.index {
  background-color: #000;
  margin: 0px;
  overflow: hidden;
  height: 100vh;
  height: 100svh;
}
.index * {
  box-sizing: border-box;
}
.index a {
  color: #ddd;
}
.index .about__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 2em;
  color: white;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
.index .about__container .about {
  width: 40em;
  height: 40em;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2em;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 1em;
}
.index .btn2 {
  text-align: center;
  padding: 0.5em 0.8em;
  border: 0.06em solid rgba(255, 255, 255, 0.55);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  letter-spacing: 0.2em;
  background-color: rgba(0, 0, 0, 0.201);
  color: white;
  pointer-events: all;
  font-size: clamp(1em, 1vw, 2em);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.index .btn2:hover {
  opacity: 0.9;
  -webkit-backdrop-filter: invert(100%);
          backdrop-filter: invert(100%);
  background-color: rgba(0, 0, 0, 0.601);
}
.index .btn2:active {
  opacity: 1;
  -webkit-backdrop-filter: invert(0%);
          backdrop-filter: invert(0%);
}
.index .btn {
  text-align: center;
  padding: 0.5em 0.8em;
  border: 0.06em solid rgba(255, 255, 255, 0.55);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  letter-spacing: 0.2em;
  background-color: rgba(0, 0, 0, 0.201);
  color: white;
  -webkit-backdrop-filter: sepia(100%);
          backdrop-filter: sepia(100%);
  -webkit-backdrop-filter: grayscale(100%) blur(4px);
          backdrop-filter: grayscale(100%) blur(4px);
  pointer-events: all;
  font-size: clamp(1em, 1vw, 2em);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.index .btn:hover {
  transform: scale(1.06);
  -webkit-backdrop-filter: invert(100%);
          backdrop-filter: invert(100%);
  background-color: rgba(0, 0, 0, 0.601);
}
.index .btn:active {
  transform: scale(1);
}
.index .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.index .overlay__container {
  pointer-events: none;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  position: absolute;
  left: 0;
  top: 0;
  padding-bottom: 3em;
}
.index .contact {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  align-items: center;
  opacity: 0;
  justify-content: center;
  transition: opacity 0.5s ease;
  pointer-events: none;
  touch-action: none;
  z-index: 102;
}
.index .contact .btn {
  pointer-events: none;
  touch-action: none;
}
.index .contact .thanks {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.index .contact .thanks,
.index .contact h1,
.index .contact a,
.index .contact .contact__form {
  transition: all 0.2s ease;
}
.index .contact.thanks .contact__form,
.index .contact.thanks h1,
.index .contact.thanks a {
  opacity: 0;
  pointer-events: none;
}
.index .contact.thanks .thanks {
  opacity: 1;
}
.index .contact.show {
  opacity: 1;
  pointer-events: all;
  touch-action: all;
}
.index .contact.show .btn {
  pointer-events: all;
  touch-action: all;
}
.index .contact__wrapper {
  background-color: rgba(0, 0, 0, 0.598);
  color: white;
  padding: 2em;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.258);
}
.index .contact__wrapper * {
  line-height: 1.4em;
}
.index .contact__wrapper h1 {
  font-size: 2em;
}
.index .contact__wrapper .contact__form {
  border-radius: 0.2em;
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  row-gap: 0.4em;
}
.index .contact__wrapper .contact__form label {
  color: #ddd;
}
.index .contact__wrapper .contact__form .row {
  display: flex;
  flex-direction: column;
}
.index .contact__wrapper .contact__form input,
.index .contact__wrapper .contact__form textarea {
  background-color: rgba(0, 0, 0, 0.414);
  border: 0.1em solid rgba(255, 255, 255, 0.509);
  color: white;
  transition: all 0.2s ease-in-out;
}
.index .contact__wrapper .contact__form input:focus,
.index .contact__wrapper .contact__form textarea:focus {
  opacity: 0.9;
  background-color: rgba(225, 161, 12, 0.084);
  outline: none;
}
.index .contact__wrapper .contact__form input.error,
.index .contact__wrapper .contact__form textarea.error {
  border: 0.1em solid rgba(246, 4, 4, 0.509);
  color: red;
}

.reel {
  display: flex;
  height: 100svh;
  width: 100vw;
  background-color: black;
  align-items: center;
  justify-content: center;
}
.reel #player {
  width: 100vw;
  max-height: 100svh;
}
.reel .fader {
  transition: all 0.4s ease-in;
}/*# sourceMappingURL=main.css.map */