* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

@font-face {
  font-family: "Averia Libre";
  src: url("/static/fonts/AveriaLibre-Light.woff2") format("woff2"),
    url("/static/fonts/AveriaLibre-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Averia Libre";
  src: url("/static/fonts/AveriaLibre-Bold.woff2") format("woff2"),
    url("/static/fonts/AveriaLibre-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: #f4f0e7;
}

.wrapper {
  overflow: hidden;
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  max-width: 100%;
  position: fixed;
}

.logo-container {
  width: 100%;
  padding: 40px;
  padding-bottom: 20px;
  max-width: 600px;
  position: relative;
  aspect-ratio: 1 / 1;
}

.animation-container {
  position: absolute;
  aspect-ratio: 1 / 1;
  width: 160%;
  left: -30%;
  top: -30%;
}

.page-header-container {
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;

  flex-direction: column;
  transition: all 0.8s cubic-bezier(0.37, 0.12, 0.23, 1.09);
}

.page-header-container--hidden {
  transform: scale(0.9);
}

.page-caption {
  font-weight: 700;
  font-family: "Courier New", Courier, monospace;
  padding-bottom: 20px;
}

.navigation {
  position: fixed;
  padding: 20px;
  width: 100%;
  display: flex;
  justify-content: right;
  z-index: 999;
}

.info-button {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: transparent;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.8s cubic-bezier(0.37, 0.12, 0.23, 1.09);
}

.info-button:active {
  transform: scale(0.8);
}

.info-button--active {
  transform: rotate(135deg);
}

.info-button > .close-icon {
  position: fixed;
  transition: all 0.8s cubic-bezier(0.37, 0.12, 0.23, 1.09);
  transform: rotate(-45deg);
  opacity: 0;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-button > .info-icon {
  transition: all 0.8s cubic-bezier(0.37, 0.12, 0.23, 1.09);
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-button--active > .close-icon {
  opacity: 1;
}

.info-button--active > .info-icon {
  opacity: 0;
}

.info-wrapper {
  height: 100dvh;
  width: 100%;
  position: fixed;
  background-color: #f4f0e700;
  transition: all 0.5s cubic-bezier(0.37, 0.12, 0.23, 1.09);
  backdrop-filter: blur(0px);
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.info-wrapper--active {
  opacity: 1;
  top: 0px;
  backdrop-filter: blur(10px);
  background-color: #f4f0e7;
  pointer-events: all;
}

.logo-type-container {
  max-width: 300px;
  width: 100%;
  padding: 10px 40px;
  padding-bottom: 15px;
}

.info-text {
  font-size: 1.4rem;
  padding-bottom: 10px;
  font-family: "Averia Libre", serif;
}

.info-text > a {
  color: black;
  text-decoration: none;
}

.info-text > a:hover {
  color: black;
  text-decoration: underline;
}

.info-title {
  font-weight: 700;
  margin-top: 20px;
  font-size: 2.6rem;
}

.animate-item {
  opacity: 0;
  transform: translateY(30px); /* Pushes them down initially */
  transition: opacity 0.2s ease,
    transform 0.6s cubic-bezier(0.37, 0.12, 0.23, 1.09);
}

.info-wrapper--active .animate-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.37, 0.12, 0.23, 1.09);
  transition-delay: calc(var(--i) * 0.025s);
}

.page-footer {
  padding: 20px;
  width: 100%;
  position: fixed;
  z-index: 99;
  bottom: 0px;
}

.footer-text {
  width: 100%;
  text-align: center;
  font-family: "Averia Libre", serif;
  color: grey;
  font-weight: 700;
  font-size: 1rem;
}
