@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&display=swap");
/* colors */
:root {
  --primary: #F6F2EA;
  --secondary: #EE1707;
  --primary20: #F6F2EA33;
  --secondary20: #EE170733;
}

[data-theme=invert] {
  --primary: #EE1707;
  --secondary: #F6F2EA;
  --primary20: #EE170733;
  --secondary20: #F6F2EA33;
}

[data-nav-open] {
  --primary: #EE1707;
  --secondary: #F6F2EA;
}

/* spacing */
/* font sizes */
/* font fams */
@keyframes letter-drop {
  0% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
  10% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
  49% {
    transform: translateY(30px);
    opacity: 0;
  }
  50% {
    transform: translateY(-30px);
    opacity: 0;
  }
  80% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes letter-drop-mobile {
  0% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
  35% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 0;
  }
  51% {
    transform: translateY(-20px);
    opacity: 0;
  }
  65% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
::-moz-selection {
  background: var(--secondary20);
}
::selection {
  background: var(--secondary20);
}

body {
  background-color: var(--primary);
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Fraunces", serif;
}

p,
a,
span {
  margin: 0;
  font-weight: 300;
  font-family: "Google Sans Code", monospace;
}

.slim-button {
  min-width: 200px;
  align-self: center;
  font-family: "Google Sans Code", monospace;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--primary);
  color: var(--secondary);
  border: 1px solid var(--secondary);
  padding: 8px 30px;
  margin: 20px auto;
  text-decoration: none;
  overflow: hidden;
}
.slim-button .char {
  display: inline-block;
  transform: translateY(0) rotate(0);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}
.slim-button:hover {
  cursor: pointer;
  background-color: var(--secondary);
  color: var(--primary);
}
.slim-button:hover .char, .slim-button:focus-visible .char {
  animation: letter-drop 3s ease infinite;
  animation-delay: calc(var(--i) * 80ms);
}
.slim-button:not(:hover):not(:focus-visible) .char {
  animation: none;
}
@media (max-width: 999px) {
  .slim-button {
    min-width: 120px;
    margin: 10px auto;
  }
  .slim-button .char {
    animation: letter-drop-mobile 4s ease infinite !important;
    animation-delay: calc(var(--i) * 80ms) !important;
  }
}

.kao {
  font-family: "Google Sans Code", monospace;
  font-size: 14px;
  font-weight: 300;
  font-size: 16px;
}

@keyframes shimmer {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateX(-30px) skew(-30deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) skew(0);
  }
}
.main-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: calc(100vh - 40px);
  width: calc(100vw - 40px);
  margin: 20px;
}
@media (max-width: 999px) {
  .main-container {
    height: calc(100vh - 20px);
    width: calc(100vw - 20px);
    margin: 10px;
  }
}

.top-bar,
.bottom-bar {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  color: var(--secondary);
}
@media (min-width: 999px) {
  .top-bar > div,
  .bottom-bar > div {
    flex: 1;
  }
}
.top-bar .desktop-nav,
.bottom-bar .desktop-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.top-bar .nav-item,
.bottom-bar .nav-item {
  text-decoration: none;
  color: var(--secondary);
  font-family: "Google Sans Code", monospace;
  font-size: 14px;
  font-weight: 300;
}
.top-bar .nav-item:hover,
.bottom-bar .nav-item:hover {
  font-style: italic;
}
.top-bar .tooltip-wrapper:hover .nav-item,
.bottom-bar .tooltip-wrapper:hover .nav-item {
  opacity: 0.5;
  font-style: normal;
  transition: 400ms;
}
.top-bar .kao-centerpiece,
.bottom-bar .kao-centerpiece {
  text-align: center;
}
.top-bar .kao-accent,
.bottom-bar .kao-accent {
  padding: 0 8px;
  text-align: right;
  z-index: 2;
}
.top-bar .invert-button,
.bottom-bar .invert-button {
  display: flex;
  justify-content: center;
}
@media (max-width: 999px) {
  .top-bar .invert-button,
  .bottom-bar .invert-button {
    display: none;
  }
}
.top-bar .invert-button button,
.bottom-bar .invert-button button {
  background: linear-gradient(90deg, var(--secondary) 50%, var(--primary) 50%, var(--primary)) 50%;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid var(--secondary);
}
.top-bar .invert-button button:hover,
.bottom-bar .invert-button button:hover {
  cursor: pointer;
}

.top-bar .kao span {
  color: var(--secondary);
  animation: shimmer 2s infinite;
}
.top-bar .kao span:nth-of-type(1) {
  animation-delay: 0.2s;
}
.top-bar .kao span:nth-of-type(2) {
  animation-delay: 0.4s;
}
.top-bar .kao span:nth-of-type(3) {
  animation-delay: 0.6s;
}
.top-bar .kao span:nth-of-type(4) {
  animation-delay: 0.8s;
}
.top-bar .kao span:nth-of-type(5) {
  animation-delay: 1s;
}
.top-bar .kao span:nth-of-type(6) {
  animation-delay: 1.2s;
}
.top-bar .kao span:nth-of-type(7) {
  animation-delay: 1.4s;
}
.top-bar .kao span:last-of-type {
  animation: none;
  font-size: 20px;
}
.top-bar .kao-accent {
  padding: 0 6px;
}

.bottom-bar .kao span {
  color: var(--secondary);
  animation: shimmer 2s infinite;
}
.bottom-bar .kao span:nth-of-type(1) {
  animation-delay: 1.2s;
}
.bottom-bar .kao span:nth-of-type(2) {
  animation-delay: 1s;
}
.bottom-bar .kao span:nth-of-type(3) {
  animation-delay: 0.8s;
}
.bottom-bar .kao span:nth-of-type(4) {
  animation-delay: 0.6s;
}
.bottom-bar .kao span:nth-of-type(5) {
  animation-delay: 0.4s;
}
.bottom-bar .kao span:nth-of-type(6) {
  animation-delay: 0.2s;
}
.bottom-bar .kao span:nth-of-type(7) {
  animation-delay: 0;
}
.bottom-bar .kao span:first-of-type {
  animation: none;
  font-size: 16px;
}
.bottom-bar .kao-accent {
  text-align: left;
}
.bottom-bar .desktop-nav {
  justify-content: flex-end;
}

/* revealing mobile nav */
@media (max-width: 999px) {
  .top-bar .desktop-nav,
  .bottom-bar .desktop-nav {
    display: none;
  }
}
.top-bar .mobile-nav .nav-links,
.bottom-bar .mobile-nav .nav-links {
  display: none;
}
@media (max-width: 999px) {
  .top-bar .mobile-nav .nav-links,
  .bottom-bar .mobile-nav .nav-links {
    position: absolute;
    z-index: 1;
    background: var(--primary);
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    text-align: center;
  }
}
.top-bar .mobile-nav .hamburger,
.bottom-bar .mobile-nav .hamburger {
  display: none;
  background: none;
  position: absolute;
  z-index: 2;
  border: none;
  color: var(--secondary);
  font-size: 24px;
}
@media (max-width: 999px) {
  .top-bar .mobile-nav .hamburger,
  .bottom-bar .mobile-nav .hamburger {
    display: block;
  }
  .top-bar .mobile-nav .nav-links.open,
  .bottom-bar .mobile-nav .nav-links.open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  .top-bar .mobile-nav .nav-links.open .nav-item,
  .bottom-bar .mobile-nav .nav-links.open .nav-item {
    opacity: 0;
    transform: translateX(-30px);
    font-size: 24px;
    font-family: "Fraunces", serif;
    font-weight: 700;
    animation: fade-in 0.5s;
    animation-fill-mode: forwards;
  }
  .top-bar .mobile-nav .nav-links.open .nav-item:nth-of-type(2),
  .bottom-bar .mobile-nav .nav-links.open .nav-item:nth-of-type(2) {
    animation-delay: 0.2s;
  }
  .top-bar .mobile-nav .nav-links.open .nav-item:nth-of-type(3),
  .bottom-bar .mobile-nav .nav-links.open .nav-item:nth-of-type(3) {
    animation-delay: 0.4s;
  }
  .top-bar .mobile-nav .nav-links.open .nav-item:nth-of-type(4),
  .bottom-bar .mobile-nav .nav-links.open .nav-item:nth-of-type(4) {
    animation-delay: 0.6s;
  }
  .top-bar .mobile-nav .nav-links.open .nav-item:nth-of-type(5),
  .bottom-bar .mobile-nav .nav-links.open .nav-item:nth-of-type(5) {
    animation-delay: 0.8s;
  }
  .top-bar .mobile-nav .nav-links.open .nav-item:nth-of-type(6),
  .bottom-bar .mobile-nav .nav-links.open .nav-item:nth-of-type(6) {
    animation-delay: 1s;
  }
}

.central-content {
  height: 100%;
}
.central-content .central-content-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  justify-content: space-between;
}
.central-content .central-content-container .left-bar,
.central-content .central-content-container .right-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--secondary);
}
@media (max-width: 999px) {
  .central-content .central-content-container .left-bar,
  .central-content .central-content-container .right-bar {
    z-index: 1;
  }
}
.central-content .central-content-container .left-bar .divider,
.central-content .central-content-container .right-bar .divider {
  width: 1px;
  height: 100%;
  background: var(--secondary);
}
.central-content .central-content-container .left-bar p.vert-text,
.central-content .central-content-container .right-bar p.vert-text {
  white-space: nowrap;
  font-family: "Google Sans Code", monospace;
  font-size: 14px;
  font-weight: 300;
}
@media (max-width: 999px) {
  .central-content .central-content-container .left-bar p.vert-text,
  .central-content .central-content-container .right-bar p.vert-text {
    font-family: "Google Sans Code", monospace;
    font-size: 12px;
    font-weight: 300;
  }
}
.central-content .central-content-container .left-bar p {
  writing-mode: sideways-lr;
}
.central-content .central-content-container .right-bar p {
  writing-mode: vertical-lr;
}
.central-content .central-content-container .central-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.central-content .central-content-container .central-text-container h1 {
  display: flex;
  flex-direction: column;
  color: var(--secondary);
}
.central-content .central-content-container .central-text-container h1 span {
  font-family: "Fraunces", serif;
  font-size: 120px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 0.9;
}
@media (max-width: 999px) {
  .central-content .central-content-container .central-text-container h1 span {
    font-size: 45px;
  }
}
.central-content .central-content-container .central-text-container h1.gigantic span {
  font-family: "Fraunces", serif;
  font-size: 170px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 0.9;
}
@media (max-width: 999px) {
  .central-content .central-content-container .central-text-container h1.gigantic span {
    font-size: 45px;
  }
}
.central-content .central-content-container .central-text-container .subheading-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin: 40px 0 20px;
}
@media (max-width: 999px) {
  .central-content .central-content-container .central-text-container .subheading-container {
    margin: 20px 0 10px;
  }
}
.central-content .central-content-container .central-text-container .subheading-container .solo-subheading {
  width: 100%;
  font-family: "Google Sans Code", monospace;
  font-size: 14px;
  font-weight: 300;
  color: var(--secondary);
}
.central-content .central-content-container .central-text-container .subheading-container .subheading {
  font-family: "Google Sans Code", monospace;
  font-size: 12px;
  font-weight: 300;
  color: var(--secondary);
}
.central-content .central-content-container .central-text-container .subheading-container .divider {
  width: 100%;
  height: 1px;
  background: var(--secondary);
  min-width: 200px;
}
@media (max-width: 999px) {
  .central-content .central-content-container .central-text-container .subheading-container .divider {
    min-width: 100px;
  }
}

.tooltip-wrapper {
  position: relative;
  text-align: center;
  width: auto;
}
.tooltip-wrapper .tooltip {
  background: var(--secondary);
  bottom: 100%;
  color: var(--primary);
  display: block;
  right: 20px;
  margin-bottom: 15px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  width: 220px;
  transform: translateY(10px);
  transition: 600ms;
}
.tooltip-wrapper .tooltip p {
  opacity: 0;
  font-family: "Google Sans Code", monospace;
  font-size: 12px;
  font-weight: 300;
  text-align: left;
}
.tooltip-wrapper .tooltip p:last-of-type {
  margin-top: 5px;
  opacity: 0;
  transition: 600ms;
}
.tooltip-wrapper .tooltip::before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}
.tooltip-wrapper .tooltip::after {
  border-left: solid transparent 10px;
  border-top: solid var(--secondary) 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  right: 0;
  margin-left: -13px;
  position: absolute;
  width: 0;
}

.tooltip-wrapper:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
  transition: 600ms;
}
.tooltip-wrapper:hover .tooltip p:first-of-type {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
  transition: 600ms;
}
.tooltip-wrapper:hover .tooltip p:last-of-type {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
  transition: 1s;
  transition-delay: 0.75s;
}

.lte8 .wrapper .tooltip {
  display: none;
}/*# sourceMappingURL=style.css.map */