/*
0px - 600px: Phone
600px - 900px: Tablet Portrait
900px - 1200px: Tablet Landscape
1200px - 1800px: Normal Styles (Desktop)
1800px + : Big Desktop

    $breakpoint argument choices:
    - phone
    - tab-port
    - tab-land
    - big-desktop

    ORDER: base + typography > general layout > page layout > components
*/
html {
  font-size: 62.5%;
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}

::selection {
  background-color: #24b9be;
  color: #fff;
}

.no-click {
  pointer-events: none;
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes disappear {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes appear {
  0% {
    -webkit-opacity: 0;
  }
  100% {
    -webkit-opacity: 1;
  }
}
@-webkit-keyframes disappear {
  0% {
    -webkit-opacity: 1;
  }
  100% {
    -webkit-opacity: 0;
  }
}
@-moz-keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes disappear {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.appear {
  -webkit-animation: appear 0.5s steps(27, end);
  -moz-animation: appear 0.5s steps(27, end);
  -ms-animation: appear 0.5s steps(27, end);
  animation: appear 0.5s steps(27, end);
  animation-fill-mode: forwards;
}

.disappear {
  -webkit-animation: disappear 0.5s steps(27, end);
  -moz-animation: disappear 0.5s steps(27, end);
  -ms-animation: disappear 0.5s steps(27, end);
  animation: disappear 0.5s steps(27, end);
  animation-fill-mode: forwards;
}

.disappear-slow {
  -webkit-animation: disappear 1s steps(13, end);
  -moz-animation: disappear 1s steps(13, end);
  -ms-animation: disappear 1s steps(13, end);
  animation: disappear 1s steps(13, end);
  animation-fill-mode: forwards;
}

.disappear-really-slow {
  -webkit-animation: disappear 2.5s steps(13, end);
  -moz-animation: disappear 2.5s steps(13, end);
  -ms-animation: disappear 2.5s steps(13, end);
  animation: disappear 2.5s steps(13, end);
  animation-fill-mode: forwards;
}

.main-container {
  height: 100dvh;
  display: flex;
  background-color: black;
}

.view-container {
  overflow: hidden;
  margin: auto auto;
  width: 405px;
  height: 720px;
  max-height: 100%;
  background-color: black;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
}
@media only screen and (max-width: 25.3125em) {
  .view-container {
    width: 100vw;
    height: 177.7777777778vw;
  }
}

.background {
  width: 100%;
  height: 720px;
  grid-area: 1/1/2/2;
}
@media only screen and (max-width: 25.3125em) {
  .background {
    width: 100vw;
    height: 177.7777777778vw;
  }
}
.background img {
  height: auto;
  width: 100%;
}

.bg-stack {
  width: 100%;
  height: auto;
  grid-area: 1/1/2/2;
}
.bg-stack img {
  width: 100%;
}

.black {
  background-color: black;
  display: flex;
  justify-content: end;
  align-items: end;
  color: #6f0000;
  font-size: 1.5rem;
  height: 100%;
  font-family: monospace;
  text-align: center;
}
.black span {
  position: relative;
  bottom: 50%;
  right: 35%;
  animation: spin 3s steps(30);
  animation-iteration-count: infinite;
  height: 12rem;
  width: 12rem;
  margin-top: 8rem;
  background-image: url("../img/swirl.png");
  background-size: 12rem;
  opacity: 0.5;
}

@keyframes bob {
  0% {
    transform: translateY(0rem);
  }
  50% {
    transform: translateY(0.7rem);
  }
  100% {
    transform: translateY(0rem);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.border:active {
  box-shadow: 1 2 2 green;
}

.center-button-bg {
  height: 11.5%;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.center-button-bg img {
  height: 65%;
  width: auto;
}

.gate--button {
  width: 20rem;
  height: 13rem;
  border-radius: 50%;
  transform: translateY(-6.5rem);
  align-self: center;
  justify-self: center;
}
.gate--button:hover {
  cursor: pointer;
}
.gate--animate {
  animation: gateUp 1.4s steps(27, end);
  animation-fill-mode: forwards;
}

@keyframes gateUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes gateUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@-moz-keyframes gateUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.tv {
  height: 100%;
  width: 100%;
  grid-area: 1/1/2/2;
  display: grid;
  align-self: center;
  justify-self: center;
  padding: 0.4rem;
  align-items: center;
  justify-content: center;
  grid-template-columns: 20%;
}
.tv img {
  grid-area: 1/1/2/2;
  opacity: 0;
  object-fit: cover;
  width: 100%;
  margin-top: -234%;
}

.nav {
  height: 11%;
  grid-area: 1/1/2/2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14%;
  margin-top: auto;
}
.nav-button {
  height: 53%;
  display: flex;
}
.nav-button:hover {
  cursor: pointer;
}
.nav-button img {
  height: 100%;
  width: auto;
}
.nav-left {
  margin-top: 2rem;
}
.nav-right {
  margin-top: 2rem;
}
.nav-center-container {
  width: 24%;
  min-width: 24%;
  display: flex;
}
.nav-center {
  height: 70%;
  width: 100%;
  margin-top: 0rem;
  border-radius: 50%;
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
}
.nav-center img {
  grid-area: 1/1/2/2;
  width: 100%;
  height: auto;
  opacity: 0;
}

.error-message {
  width: 70%;
  height: 4%;
  background-color: white;
  display: flex;
  padding: 2rem 1rem;
  margin: 70% auto;
  z-index: 999999;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid #1e1e1e;
  border-radius: 1px;
  background-color: rgba(182, 0, 0, 0.558);
  color: #c2c2c2;
  box-shadow: 1px 1px 1.3rem #570000;
}

.confirm {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.51);
  z-index: 20000001;
  display: grid;
  justify-content: center;
  align-items: center;
  transition-duration: 0.5s;
  opacity: 0;
}
.confirm .panel {
  border-radius: 2px;
  padding: 0.5rem 3rem;
  color: #870f0f;
  font-weight: bold;
  font-family: "monospace";
  letter-spacing: 1.5px;
  grid-area: 1/1/2/2;
  width: 100%;
}
.confirm .panel-bg {
  grid-area: 1/1/2/2;
  width: 35rem;
  height: auto;
}
.confirm--text {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.confirm--buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 2rem;
}
.confirm--buttons .button {
  padding: 1rem;
  border-radius: 2px;
  background-color: grey;
  font-weight: bold;
  cursor: pointer;
  transition-duration: 0.5s;
  color: #610000;
}
.confirm--buttons .button:hover {
  box-shadow: 0px 0px 7px rgba(255, 0, 0, 0.5);
}
.confirm--buttons .yes-button {
  margin-right: 3rem;
  border: 1px solid #545454;
}
.confirm--buttons .no-button {
  border: 1px solid #535353;
}

.contact-form {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-y: scroll;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  grid-area: 1/1/2/2;
}
.contact-form textarea {
  z-index: 20000000;
  grid-area: 1/1/2/2;
  width: 33.75%;
  height: 50%;
  justify-self: end;
  margin-right: 7%;
  margin-top: 4.5%;
  background-color: transparent;
  border: none;
  outline: none;
  resize: none;
  color: #dbdbdb;
  font-family: monospace;
  line-height: 15px;
  font-size: 1.1rem;
}
.contact-form input {
  display: none;
}
.contact-form img {
  width: auto;
  height: 100%;
  max-width: 100%;
  grid-area: 1/1/2/2;
}
.contact-form--contact {
  width: auto;
  height: 16%;
}
.contact-form--name {
  width: auto;
  height: 12.5%;
  display: grid;
  grid-template-rows: 100%;
}
.contact-form--email {
  width: auto;
  height: 12.5%;
  display: grid;
  grid-template-rows: 100%;
}
.contact-form--phone {
  width: auto;
  height: 12.5%;
  display: grid;
  grid-template-rows: 100%;
}
.contact-form--message {
  width: auto;
  height: 12.5%;
  display: grid;
  grid-template-rows: 100%;
}
.contact-form--upload-status {
  color: #61172d;
  background-color: black;
  border: 1px solid grey;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 2px;
  text-transform: uppercase;
}
.contact-form--upload-files {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.contact-form--upload-files .upload-item {
  display: flex;
  flex-direction: row;
  justify-content: start;
  width: 80%;
  height: 4rem;
  background-color: rgba(156, 156, 156, 0.326);
  border: 1px solid black;
  color: white;
  padding: 0rem 1rem;
}
.contact-form--upload-files .upload-item--filename {
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}
.contact-form--upload-files .upload-item--swirl {
  color: #c2c2c2;
  animation: spin 3s steps(30);
  animation-iteration-count: infinite;
  align-items: center;
  font-size: 2rem;
  margin-left: auto;
  user-select: none;
}
.contact-form--upload-files .upload-item--remove {
  color: red;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
}
.contact-form--upload-files .upload-item--select-file {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
}
.contact-form--upload-files .upload-item--select-file img {
  height: 100%;
  width: auto;
}
.contact-form--upload-labels {
  display: flex;
  align-self: start;
  margin-right: 2rem;
  margin-top: 2rem;
  max-width: 50%;
}
.contact-form--upload-labels .select-file-button {
  cursor: pointer;
}
.contact-form--submit {
  width: auto;
  height: 14%;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.contact-form--home {
  width: auto;
  height: 11%;
  cursor: pointer;
  background-color: transparent;
  border: none;
  margin-top: 2rem;
}
.contact-form--home img {
  width: auto;
  height: 100%;
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.gallery-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  margin-top: 10%;
  grid-area: 1/1/2/2;
}
.gallery-menu--gallery {
  width: auto;
  height: 18%;
}
.gallery-menu--photo {
  width: auto;
  height: 18%;
  display: grid;
  grid-template-rows: 100%;
  cursor: pointer;
}
.gallery-menu--video {
  width: auto;
  height: 18%;
  display: grid;
  grid-template-rows: 100%;
  cursor: pointer;
}
.gallery-menu--flash {
  width: auto;
  height: 18%;
  display: grid;
  grid-template-rows: 100%;
  cursor: pointer;
}
.gallery-menu--home {
  width: auto;
  height: 10%;
  display: grid;
  grid-template-rows: 100%;
  margin-top: 10%;
  cursor: pointer;
}
.gallery-menu img {
  width: auto;
  height: 100%;
  max-width: 100%;
  grid-area: 1/1/2/2;
}

.submission-info {
  height: 90%;
  width: 90%;
  margin: auto auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.submission-info--digest {
  background-color: rgba(128, 128, 128, 0.236);
  border: 1px solid #420000;
  width: 100%;
  border-radius: 5%;
  text-align: center;
  padding: 3rem 1rem;
  color: white;
  font-size: 2rem;
}

.home-button {
  width: 80%;
  margin-top: 5rem;
  height: auto;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto auto;
  height: 100%;
  width: 100%;
}

.detail {
  grid-area: 1/1/2/2;
  height: 100%;
  width: 100%;
  z-index: 200000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(1, 1, 1, 0.833);
}
.detail--x {
  text-align: end;
  color: red;
  font-size: 3rem;
  margin-right: 2rem;
  width: 100%;
  font-family: monospace;
  user-select: none;
  cursor: pointer;
}
.detail--flash {
  margin-bottom: 4rem;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail--flash img {
  width: 100%;
  height: auto;
}

.flash-container {
  height: 80%;
  width: 100%;
  margin-bottom: 3rem;
  display: grid;
  align-items: start;
}
.flash-container--border {
  grid-area: 1/1/2/2;
  height: 100%;
  width: auto;
}
.flash-container--border img {
  height: 100%;
}
.flash-container--flash {
  grid-area: 1/1/2/2;
  background-color: rgba(223, 223, 223, 0);
  display: grid;
  grid-template-columns: 2fr 2fr;
  row-gap: 3rem;
  margin-top: 5rem;
  height: 82%;
  width: 80%;
  justify-self: center;
}
.flash-container--flash img {
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.home-button {
  width: 50%;
  margin-top: 1rem;
  cursor: pointer;
}

.flash-sheet {
  cursor: pointer;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*# sourceMappingURL=style.css.map */
