.page--about {
  font-size: 1.3rem;
  color: #fff;
  width: 80%;
}

.page--about hr {
  margin: 2rem 0;
}

.page--about .author_note {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.page--about .author_note img {
  width: 150px;
  flex-grow: 1;
  min-width: 150px;
  object-fit: contain;
  align-self: center;
  flex-shrink: 0;
}

.page--about .author_note p {
  width: calc(100% - 150px - 1rem);
  flex-grow: 1;
  flex-basis: 400px;
  margin: 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 10px;
  justify-content: center;
  width: 90%;
  max-width: 850px;
}

.gallery-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  color: #fff;
  text-decoration: none;
}

.gallery-item img {
  aspect-ratio: 255/118;
}
.page {
  width: 100%;
  aspect-ratio: 2553/1181;
  object-fit: contain;
  visibility: hidden;
}

.nojs .page {
  visibility: visible;
}

.navigation {
  display: flex;
  gap: 25px 125px;
  justify-content: center;
  justify-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.navigation a {
  color: #000;
  padding: 20px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  border-radius: 100%;
  background-color: #fff;
  min-width: 2rem;
  min-height: 2rem;
  position: relative;
}

.navigation .placeholder {
  visibility: hidden;
  padding: 20px 20px;
  border: none;
  font-size: 2rem;
  border-radius: 100%;
  background-color: #fff;
  min-width: 2rem;
  min-height: 2rem;
  position: relative;
}

.navigation a:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  border: 1.5rem solid transparent;
  border-bottom: 1.5rem solid #000;
  transform: translateX(-50%) translateY(-85%);
}

.navigation a:hover, .navigation a:focus, .navigation a:active {
  background-color: 000;
  color: #bbb;
}

.navigation .next-button {
  transform: rotate(90deg);
}

.navigation .prev-button {
  transform: rotate(-90deg);
}
.page--links {
  font-size: 1.3rem;
  color: #fff;
  width: 80%;
}

.page--links .text--secondary {
  color: #ddd;
}

.page--links h1 {
  text-align: center;
}
.purchase {
  width: 80%;
  height: 100%;
  text-align: center;
  font-size: 1.5em;
}
.signup {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.signup h1 {
  margin: 10px;
  text-align: center;
}

.signup form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: min(1000px, 80%);
  flex-wrap: wrap;
}

.signup form input.email-input {
  font-family: Big Noodle, sans-serif;
  font-style: italic;
  font-size: 1.5em;
  text-transform: uppercase;

  flex-grow: 1;
  width: 400px;
  padding: 10px;
  margin: 5px;
}

.signup form .submit-button {
  font-family: Big Noodle, sans-serif;
  font-style: italic;
  font-size: 1.5em;
  border-radius: 5px;
  border: 2px solid #fff;

  width: 150px;

  padding: 10px;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  margin: 5px;
}
.under-construction {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.under-construction img {
  max-width: 100%;
  max-height: 100%;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* Reset */
body,html {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Big Noodle";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(BigNoodle-564da9673f8d95034f2a6bff56ed7b7e2233ef608ebbfd09cf17084c95a421ef.ttf) format('truetype');
}

@font-face {
  font-family: "Big Noodle";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(BigNoodleOblique-60aedd28045d98ec3e65ace842bf63360ecf46e0249c32c2211e4e3f94153ad6.ttf) format('truetype');
}

body {
  font-family: Big Noodle, sans-serif;
  background-color: #000;
  color: #fff;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;

  height: 100vh;
  max-width: 1000px;
  margin: 0 auto;
}

@keyframes fadeAndSlideIn {
  0% {
    opacity: 0.5;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.flashes {
  animation: fadeAndSlideIn .75s ease-out;

  margin-top: 20px;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  font-size: 1.5em;
}

.flashes .flash {
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #fff;
  background-color: #000;
  color: #fff;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.title {
  width: 100%;
  max-height: 176px;
  padding: 40px 0;
  aspect-ratio: 2142 / 1160;
  object-fit: contain;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  padding: 13px 0;
  font-size: 1.7em;
  color: #fff;
  text-transform: uppercase;
  gap: 5px 20px;
}

a {
  color: #fff !important;
}

.links a {
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
  margin: auto;
}

.links a.active {
  cursor: default;
}

.links a.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Underline animation */
.links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.links a:hover:after, .links a:focus:after, .links a:active:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
/* End of underline animation */

.footer {
  width: 30%;
  text-align: center;
  margin-top: 20px;
  font-size: 0.8em;
  font-weight: 100;
  margin: 3rem 0;
}
