:root {
  --bg-m: #232224;
  --bg-c: #141314;
  --bg-c2: #bfa5c9;
  --text-m: #ececec;
  --text-h: #e8c872;
  --text-h-d: rgb(139, 105, 8);
  --hero-m: #9b59b6;
  --hero-md: #4e2b5c;
  --light: #bdc3c7;
  --edit: #3498db;
  --success: #28a745;
  --error: #dc3545;
  --neutral: #a5a5a5;
  --white: #fff;
}

@keyframes accshow {
  0% {
    visibility: visible;
    opacity: 0;
    transform: translate(-100%, -100%);
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes acchide {
  0% {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    transform: translate(-100%, -100%);
  }
}
@keyframes fadeIn {
  0% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  background-color: var(--bg-m);
  color: var(--text-m);
}

/* nav */
a {
  text-decoration: none;
}

.notif_alert {
  z-index: 9999;
  display: flex;
  padding: 1.2rem 4.8rem;
  position: fixed;
  transform: translate(-50%, -100%);
  justify-content: space-between;
  align-items: center;
  width: 80rem;
  left: 50%;
  border-radius: 1000rem;
  transition: transform 0.5s;
}
.notif_alert.shown {
  transform: translate(-50%, 50%);
}
.notif_alert_close {
  font-size: 2.4rem;
  cursor: pointer;
}
.notif_alert.success {
  background-color: #28a745;
}
.notif_alert.error {
  background-color: #dc3545;
}
.notif_alert.neutral {
  background-color: #a5a5a5;
  color: #181818;
}

.pointer {
  cursor: pointer;
}

.text_emph {
  color: var(--text-h);
  font-weight: 600;
}
.text_deflink {
  color: var(--text-m);
}

.hidden {
  visibility: hidden;
}

.login_header_text {
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--text-m);
}
.login_form_form {
  gap: 6.4rem;
}
.login_remember_container {
  gap: 1.2rem;
}

.user_admin_li a {
  color: var(--text-h);
}
.user_list_item {
  padding: 0.8rem 2.4rem;
  cursor: pointer;
}
.user_list_item:last-child {
  border-bottom: none;
}
.user_list_item:hover {
  color: var(--text-h);
}
.user_logged {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.user_container {
  border-radius: 0.8rem;
  display: inline-block;
  font-size: 1.8rem;
  background-color: var(--bg-c);
  border: 0.2rem solid var(--bg-m);
  position: absolute;
  top: 100%;
  transform: translateY(-30%);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
.user_container.open {
  pointer-events: all;
  transform: translateY(-10%);
  opacity: 1;
}
.user_list {
  list-style: none;
}

input {
  font-size: inherit;
}

.acc {
  font-size: 1.8rem;
}
.acc_forms {
  position: absolute;
  display: flex;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  align-items: center;
  transition: 0.5s;
}
.acc_forms.onreg {
  transform: translate(-100%, -50%);
}
.acc_form {
  flex-shrink: 0;
  width: inherit;
}
.acc_form_remember {
  display: flex;
  gap: 0.8rem;
}
.acc_form_remember_checkbox_container {
  display: block;
  position: relative;
  cursor: pointer;
}
.acc_form_remember_checkbox_container:hover input ~ .checkmark {
  background-color: var(--bg-m);
}
.acc_form_remember_checkbox_container input:checked ~ .checkmark {
  background-color: var(--text-h);
}
.acc_form_remember_checkbox_container input {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.acc_form_remember_checkbox_container .checkmark {
  position: relative;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background-color: var(--bg-c);
  border: 0.2rem solid var(--bg-m);
  border-radius: 0.4rem;
  transition: 0.1s;
}
.acc_form_form_container {
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}
.acc_form_form_container.login > :last-child {
  grid-column: span 2;
  justify-self: center;
}
.acc_close {
  position: absolute;
  top: 2.8rem;
  right: 2.8rem;
  font-size: 3.6rem;
  cursor: pointer;
}
.acc_close:hover {
  color: var(--text-h);
}
.acc_close:active {
  color: var(--bg-m);
}
.acc_button {
  transition: 0.1s;
  border: none;
  padding: 1.2rem 8.4rem;
  border-radius: 1rem;
  color: var(--bg-c);
  font-size: 1.8rem;
  font-weight: 400;
  background-color: var(--text-h);
  cursor: pointer;
}
.acc_button:hover {
  background-color: var(--bg-m);
  color: var(--text-h);
}
.acc_button:active {
  color: var(--bg-c);
}
.acc_form_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}
.acc_form_element {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 400;
  gap: 0.8rem;
}
.acc_container {
  position: fixed;
  z-index: 999999999;
  top: 50%;
  left: 50%;
  overflow: hidden;
  visibility: hidden;
  transform: translate(-100%, -100%);
  opacity: 0;
  transform: translate(-50%, -50%);
  width: 80rem;
  height: 40rem;
  border-radius: 5rem;
  background-color: var(--bg-c);
  border: 0.2rem solid var(--bg-m);
  box-shadow: 0rem 0rem 2.8rem 0.4rem var(--bg-c);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2.8rem;
  transition: 0.5s;
}
.acc_container.open {
  animation: accshow 0.5s forwards;
}
.acc_container.hidden {
  animation: acchide 0.5s forwards;
}
.acc_header {
  display: flex;
  gap: 2.4rem;
  background: var(--bg-m);
  border-radius: 1000rem;
  border: 0.2rem solid var(--light);
  position: relative;
}
.acc_header::after {
  transition: 0.5s;
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  left: 0;
  width: 16.4rem;
  background-color: var(--hero-m);
  border-radius: 1000rem;
}
.acc_header.selected::after {
  left: 100%;
  transform: translateX(-100%);
}
.acc_header_btn {
  z-index: 1;
  cursor: pointer;
  width: 16.4rem;
  height: 6.4rem;
  border: none;
  border-radius: 1000rem;
  font-weight: 300;
  background-color: transparent;
  color: var(--text-m);
  font-size: 1.8rem;
}
.acc_form_input input {
  height: 4.8rem;
  width: 30rem;
  text-align: center;
  border: 0.2rem solid var(--bg-m);
  background-color: var(--bg-c);
  color: var(--text-m);
  border-radius: 1000rem;
}

.nav {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: center;
  z-index: 999;
}
.nav_container {
  transition: 0.5s;
  border-bottom: 0.1rem solid var(--bg-m);
  width: 100%;
  display: flex;
  align-items: center;
  padding: 2.4rem 4.8rem;
  position: relative;
}
.nav_items {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav_logo {
  font-size: 2.4rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav_logo_text {
  cursor: pointer;
}
.nav_logo_login {
  color: var(--light);
}
.nav_menu {
  position: fixed;
  padding: 1.2rem 4.8rem;
  right: 0;
  font-size: 3.2rem;
  cursor: pointer;
}
.nav.header {
  border-bottom: 0.1rem solid var(--bg-m);
  transition: 0.5s;
}
.nav.header.sticky .nav_container {
  position: fixed;
  background-color: var(--bg-c);
  padding: 1.2rem 4.8rem;
}
.nav.header.sticky .nav_container.gone {
  transform: translateY(-100%);
}
.nav.header.sticky .nav_container .nav_items li a {
  font-weight: 400;
}
.nav.header.sticky .nav_items li a {
  color: var(--light);
}
.nav.header.sticky .nav_items li a.selected {
  background-color: transparent;
  color: var(--text-m);
  font-weight: 500;
}
.nav.header .nav_items {
  transition: 0.5s;
  font-size: 2rem;
  font-weight: 300;
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: center;
  gap: 8.2rem;
}
.nav.header .nav_items li a {
  color: var(--text-m);
  display: block;
  transition: all 0.2s;
  position: relative;
  padding: 0.8rem 2.4rem;
  border-radius: 100rem;
}
.nav.header .nav_items li a.selected {
  color: var(--text-h);
}
.nav.header .nav_items li a:hover {
  color: var(--text-h);
  transform: scale(1.1);
  background-color: rgba(255, 0, 0, 0);
}

.footer {
  border-top: 0.1rem solid var(--bg-m);
  background-color: var(--bg-c);
  padding: 2.4rem;
}
.footer_contents {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

@keyframes accshow {
  0% {
    visibility: visible;
    opacity: 0;
    transform: translate(-100%, -100%);
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes acchide {
  0% {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    transform: translate(-100%, -100%);
  }
}
@keyframes fadeIn {
  0% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
.container {
  width: 100%;
  max-width: 120rem;
  margin: auto;
}

.grid {
  display: grid;
}
.grid.col_2 {
  grid-template-columns: 1fr 1fr;
}
.grid.col_3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid.col_4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.flex {
  display: flex;
}

.head_sec {
  font-size: 3.6rem;
  display: inline-block;
  position: relative;
  pointer-events: none;
  z-index: 100;
}
.head_sec::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  outline: 0.2rem solid;
  transform: translate(-50%, -50%) skew(20deg);
  outline-color: var(--text-h);
  padding: 1.2rem 3.6rem;
}
.head_sec::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  outline: 0.2rem solid;
  transform: translate(-50%, -50%) skew(-20deg);
  outline-color: var(--text-h-d);
  padding: 0.8rem 3.2rem;
}
.head_div {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
.head_sub {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-h);
}

.function_dropdown {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.function_dropdown_item {
  background-color: var(--bg-c);
  border-radius: 1.2rem;
}
.function_dropdown_header {
  display: flex;
  justify-content: space-between;
  padding: 1.8rem 2.4rem;
  cursor: pointer;
}
.function_dropdown_header_title {
  font-size: 2rem;
  font-weight: 400;
}
.function_dropdown_header_icon_link {
  transition: 0.5s;
}
.function_dropdown_header_icon_link.active {
  color: var(--text-h);
  transform: rotate(180deg) scale(1.5);
}
.function_dropdown_content {
  transition: 0.5s;
  overflow: hidden;
  max-height: 0;
}
.function_dropdown_content_text {
  padding: 2.4rem;
  border-top: 0.2rem solid;
  -o-border-image: linear-gradient(90deg, hsl(0, 100%, 50%), hsl(30, 100%, 50%), hsl(60, 100%, 50%), hsl(90, 100%, 50%), hsl(120, 100%, 50%), hsl(150, 100%, 50%), hsl(180, 100%, 50%), hsl(210, 100%, 50%), hsl(240, 100%, 50%), hsl(270, 100%, 50%), hsl(300, 100%, 50%), hsl(330, 100%, 50%), hsl(0, 100%, 50%));
     border-image: linear-gradient(90deg, hsl(0, 100%, 50%), hsl(30, 100%, 50%), hsl(60, 100%, 50%), hsl(90, 100%, 50%), hsl(120, 100%, 50%), hsl(150, 100%, 50%), hsl(180, 100%, 50%), hsl(210, 100%, 50%), hsl(240, 100%, 50%), hsl(270, 100%, 50%), hsl(300, 100%, 50%), hsl(330, 100%, 50%), hsl(0, 100%, 50%));
  border-image-slice: 1;
}
.function_dropdown_content.active {
  max-height: 1rem;
}

.padding_page {
  padding: 6.4rem 0;
}
.padding_xs {
  padding: 0.8rem;
}
.padding_s {
  padding: 1.8rem;
}
.padding_m {
  padding-top: 2.6rem;
}
.padding_l {
  padding: 3.2rem;
}
.padding_xl {
  padding: 4.8rem;
}
.padding_u_xs {
  padding-top: 0.8rem;
}
.padding_u_s {
  padding-top: 1.8rem;
}
.padding_u_m {
  padding-top: 2.6rem;
}
.padding_u_l {
  padding-top: 3.2rem;
}
.padding_u_xl {
  padding-top: 4.8rem;
}
.padding_d_xs {
  padding-bottom: 0.8rem;
}
.padding_d_s {
  padding-bottom: 1.8rem;
}
.padding_d_m {
  padding-bottom: 2.6rem;
}
.padding_d_l {
  padding-bottom: 3.2rem;
}
.padding_d_xl {
  padding-bottom: 4.8rem;
}
.padding_l_xs {
  padding-left: 0.8rem;
}
.padding_l_s {
  padding-left: 1.8rem;
}
.padding_l_m {
  padding-left: 2.6rem;
}
.padding_l_l {
  padding-left: 3.2rem;
}
.padding_l_xl {
  padding-left: 4.8rem;
}
.padding_r_xs {
  padding-right: 0.8rem;
}
.padding_r_s {
  padding-right: 1.8rem;
}
.padding_r_m {
  padding-right: 2.6rem;
}
.padding_r_l {
  padding-right: 3.2rem;
}
.padding_r_xl {
  padding-right: 4.8rem;
}

.margin_xs {
  margin: 0.8rem;
}
.margin_s {
  margin: 1.8rem;
}
.margin_m {
  margin: 2.6rem;
}
.margin_l {
  margin: 3.2rem;
}
.margin_xl {
  margin: 4.8rem;
}
.margin_u_xs {
  margin-top: 0.8rem;
}
.margin_u_s {
  margin-top: 1.8rem;
}
.margin_u_m {
  margin-top: 2.6rem;
}
.margin_u_l {
  margin-top: 3.2rem;
}
.margin_u_xl {
  margin-top: 4.8rem;
}
.margin_d_xs {
  margin-bottom: 0.8rem;
}
.margin_d_s {
  margin-bottom: 1.8rem;
}
.margin_d_m {
  margin-bottom: 2.6rem;
}
.margin_d_l {
  margin-bottom: 3.2rem;
}
.margin_d_xl {
  margin-bottom: 4.8rem;
}
.margin_l_xs {
  margin-left: 0.8rem;
}
.margin_l_s {
  margin-left: 1.8rem;
}
.margin_l_m {
  margin-left: 2.6rem;
}
.margin_l_l {
  margin-left: 3.2rem;
}
.margin_l_xl {
  margin-left: 4.8rem;
}
.margin_r_xs {
  margin-right: 0.8rem;
}
.margin_r_s {
  margin-right: 1.8rem;
}
.margin_r_m {
  margin-right: 2.6rem;
}
.margin_r_l {
  margin-right: 3.2rem;
}
.margin_r_xl {
  margin-right: 4.8rem;
}

:root {
  --bg-m: #232224;
  --bg-c: #141314;
  --bg-c2: #bfa5c9;
  --text-m: #ececec;
  --text-h: #e8c872;
  --text-h-d: rgb(139, 105, 8);
  --hero-m: #9b59b6;
  --hero-md: #4e2b5c;
  --light: #bdc3c7;
  --edit: #3498db;
  --success: #28a745;
  --error: #dc3545;
  --neutral: #a5a5a5;
  --white: #fff;
}

:root {
  --bg-m: #232224;
  --bg-c: #141314;
  --bg-c2: #bfa5c9;
  --text-m: #ececec;
  --text-h: #e8c872;
  --text-h-d: rgb(139, 105, 8);
  --hero-m: #9b59b6;
  --hero-md: #4e2b5c;
  --light: #bdc3c7;
  --edit: #3498db;
  --success: #28a745;
  --error: #dc3545;
  --neutral: #a5a5a5;
  --white: #fff;
}

@keyframes p1 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes p2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes levi {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -80%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@keyframes slide {
  0% {
    max-width: 0;
  }
  20%, 40% {
    max-width: 100%;
  }
  60%, 100% {
    max-width: 0;
  }
}
@keyframes spotlight {
  0% {
    transform: translate(-50%, -50%);
  }
  10% {
    transform: translate(-60%, -40%) scale(1.05);
    opacity: 0.5;
  }
  15% {
    transform: translate(-50%, -20%) scale(0.9);
    opacity: 0.5;
  }
  25% {
    transform: translate(-10%, -90%) scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes spotlightimg {
  10% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes spotlightarrow {
  20% {
    transform: rotate(560deg) translate(-30%);
  }
  20.001% {
    transform: rotate(200deg) translate(-30%);
  }
  27% {
    transform: rotate(-10deg) translate(-30%);
  }
  27.5% {
    transform: rotate(-13deg) translate(-30%);
  }
  28% {
    transform: rotate(-16deg) translate(-30%);
  }
  28.5% {
    transform: rotate(-17deg) translate(-30%);
  }
  29% {
    transform: rotate(-18deg) translate(-30%);
  }
  29.5% {
    transform: rotate(-19deg) translate(-30%);
  }
  30% {
    transform: rotate(-20deg) translate(-30%);
  }
}
@keyframes spotlightarrowop {
  0% {
    opacity: 0.5;
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.5;
    background-color: var(--light);
  }
  40%, 98% {
    opacity: 1;
    background-color: var(--text-h);
  }
  100% {
    opacity: 0.5;
    background-color: var(--light);
  }
}
@keyframes textshine {
  0% {
    -webkit-clip-path: polygon(0% 0, 0% 0, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0, 0% 0, 0% 100%, 0% 100%);
  }
  10% {
    -webkit-clip-path: polygon(0% 0, 30% 0, 30% 100%, 0% 100%);
            clip-path: polygon(0% 0, 30% 0, 30% 100%, 0% 100%);
  }
  20% {
    -webkit-clip-path: polygon(10% 0, 50% 0, 50% 100%, 10% 100%);
            clip-path: polygon(10% 0, 50% 0, 50% 100%, 10% 100%);
  }
  80% {
    -webkit-clip-path: polygon(70% 0, 80% 0, 80% 100%, 70% 100%);
            clip-path: polygon(70% 0, 80% 0, 80% 100%, 70% 100%);
  }
  90% {
    -webkit-clip-path: polygon(80% 0, 90% 0, 90% 100%, 80% 100%);
            clip-path: polygon(80% 0, 90% 0, 90% 100%, 80% 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
            clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}
@keyframes rotate {
  100% {
    background: linear-gradient(360deg, #b827fc, #2c90fc, #b8fd33, #fec837, #fd1892);
  }
}
.hero {
  height: 100vh;
  position: relative;
}
.hero_status {
  padding: 2.4rem;
  background-color: var(--bg-c);
  border-radius: 0 2.4rem 0 0;
  position: absolute;
  max-width: 40rem;
  left: 0;
  bottom: 0;
}
.hero_status_holder {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.8rem;
}
.hero_status_date {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
}
.hero_status_label {
  color: var(--hero-m);
  font-weight: 500;
}
.hero p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6.4rem;
  font-weight: 600;
}
.hero p.d1 {
  animation: p1 3s forwards;
}
.hero p.d1::after {
  content: "hey.";
  position: absolute;
  left: 0;
  animation: textshine 0.8s 1s linear both;
  color: var(--text-h);
}
.hero p.d2 {
  text-align: center;
  animation: p2 2s backwards 3s, levi 4s forwards 3s infinite ease-in-out;
}
.hero p.d2 .d3 {
  position: relative;
}
.hero p.d2 .d3::after {
  content: "wacky";
  animation: slide 10s 3s infinite;
  position: absolute;
  overflow: hidden;
  left: 0;
  color: var(--hero-m);
  -webkit-text-stroke: 0.1rem var(--hero-m);
}

.text_wacky {
  color: var(--hero-m);
  font-weight: 600;
  text-shadow: 0.1rem 0.1rem var(--hero-md);
}

.about_intro .grid {
  gap: 2.4rem;
  align-items: center;
}
.about_intro_text {
  font-size: 2.4rem;
  background-color: var(--bg-m);
  padding: 1.8rem;
  border-radius: 1.2rem;
}
.about_intro_img {
  width: 100%;
  animation: spotlightimg 10s infinite;
}
.about_intro_img_container {
  position: relative;
  z-index: 100;
}
.about_intro_img_container_pseudo::after {
  content: "this is me";
  color: var(--bg-c);
  position: absolute;
  text-align: center;
  padding: 1.8rem 1.2rem 1.8rem 4.8rem;
  font-weight: 600;
  top: 0;
  right: 0;
  animation: spotlightarrow 10s infinite linear, spotlightarrowop 10s infinite;
  transform: rotate(-20deg) translateX(-30%);
  background-color: var(--light);
  -webkit-clip-path: polygon(40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0% 50%);
          clip-path: polygon(40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0% 50%);
}
.about_intro_img_container_pseudo::before {
  position: absolute;
  content: "";
  width: 75%;
  height: 15%;
  display: block;
  border-radius: 100%;
  top: 98%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spotlight 10s infinite;
  z-index: -1;
  background-color: white;
}

.section.about {
  background-color: var(--bg-c);
  overflow: hidden;
}
.section.resources .resources_text {
  background-color: var(--bg-c);
  padding: 1.2rem 2.4rem;
  display: inline-block;
  align-self: center;
  border-radius: 1000rem;
  position: relative;
}
.section.resources .resources_text_container {
  display: flex;
  justify-content: center;
}
.section.resources .resources_text::after {
  position: absolute;
  top: -0.2rem;
  left: -0.2rem;
  right: -0.2rem;
  bottom: -0.2rem;
  background: linear-gradient(22deg, #b827fc, #2c90fc, #b8fd33, #fec837, #fd1892);
  content: "";
  z-index: -1;
  border-radius: 10000rem;
}

@media screen and (max-width: 80em) {
  .about_intro_img {
    width: 50%;
  }
  .about_intro_img_container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about_intro .grid {
    gap: 6.4rem;
  }
}
@media screen and (max-width: 46.875em) {
  .about_intro_img {
    width: 70%;
  }
  .hero_status {
    width: 100%;
    max-width: 100%;
    border-radius: 2.4rem 2.4rem 0 0;
    border-bottom: 0.2rem solid var(--bg-m);
  }
}
@media screen and (max-width: 31.25em) {
  .about_intro_img {
    width: 100%;
  }
  .about_intro_img_container_pseudo::after {
    content: "";
  }
}
.block_screen {
  height: 100vh;
  background-color: var(--bg-m);
}
.block_screen_title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 0.8rem;
  font-weight: 500;
  animation: fadeIn 1s forwards;
  background-color: var(--bg-c);
  padding: 2.4rem;
  border-radius: 2.4rem;
  max-height: 0;
  transition: 0.2s;
}
.block_screen_title p {
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  transform: translateY(-5rem);
}
.block_screen_title p.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.block_screen_title.typing::after {
  content: "wacky is typing...";
  position: absolute;
  top: 0;
  transform: translateY(-150%);
  color: var(--light);
}
.block_screen_title span {
  color: var(--bg-c2);
}

.admin_window {
  min-height: 100vh;
  background-color: var(--bg-m);
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin_status_cnt {
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin_status_holder {
  padding: 2.4rem;
  border-radius: 2.4rem;
  display: inline-block;
  background-color: var(--bg-c);
}
.admin_status_label {
  font-weight: 500;
  font-size: 1.6rem;
}
.admin_status_form_holder form input {
  border-radius: 100rem;
  font-size: 2.4rem;
  padding: 1.2rem;
  margin: 1.2rem;
  background-color: var(--bg-m);
  color: var(--light);
  border: none;
}
.admin_status_form_holder form input:focus {
  outline: none;
}

.journal_loading {
  height: 100vh;
  width: 100vw;
  display: flex;
  position: fixed;
  z-index: 1;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-c);
  transition: 1s;
}
.journal_loading.loaded {
  transform: translateY(100%) scale(0);
  border-radius: 100%;
}
.journal_loading_title {
  font-size: 3.6rem;
  font-family: "bungee";
}
.journal_entry_hidden .journal_entry_holder {
  transform: translate(-50%, 100%);
}
.journal_entry_main {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr 70% 1fr;
  position: relative;
}
.journal_entry_main_entry {
  margin-bottom: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.journal_entry_main_entry_time {
  font-weight: 600;
  font-size: 2.8rem;
}
.journal_entry_main_btn {
  height: 80%;
  width: 40%;
  background-color: var(--bg-c);
  border-radius: 100rem;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.6rem;
  transition: 0.2s;
}
.journal_entry_main_btn:hover {
  background-color: var(--text-h);
  cursor: pointer;
  color: var(--bg-m);
}
.journal_entry_main_window {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow-y: auto;
  background-color: var(--bg-c);
  border-radius: 2.4rem;
  padding: 2.4rem;
}
.journal_entry_main_window::-webkit-scrollbar {
  display: none;
}
.journal_entry_main_window_holder {
  height: 80%;
  width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.journal_entry_header {
  display: flex;
  height: 6.4rem;
  padding: 2.4rem;
  background-color: var(--bg-c);
  font-family: "bungee";
  justify-content: space-between;
  align-items: center;
}
.journal_entry_header_btn_close {
  font-size: 3.6rem;
  display: flex;
  justify-content: center;
  transition: 0.2s;
}
.journal_entry_header_btn_close:hover {
  color: var(--text-h);
  cursor: pointer;
}
.journal_entry_cnt {
  transition: 0.5s;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 999998;
}
.journal_entry_cnt.journal_entry_hidden {
  background-color: rgba(0, 0, 0, 0);
}
.journal_entry_holder {
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 999999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 80rem;
  width: 90vw;
  border-radius: 2.4rem;
  background-color: var(--bg-m);
}
.journal_hero {
  height: 100vh;
  position: relative;
}
.journal_calendar {
  display: flex;
}
.journal_calendar_month_ul {
  display: flex;
  align-items: flex-start;
  padding: 2.4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  justify-content: center;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.journal_calendar_month_ul li {
  font-weight: 500;
  font-size: 2rem;
  transition: 0.2s;
  color: var(--light);
}
.journal_calendar_month_ul li.active {
  color: var(--white);
  transform: scale(1.1);
}
.journal_calendar_month_ul li:hover {
  cursor: pointer;
  transform: scale(1.1);
  color: var(--text-h);
}
.journal_calendar_selector_year {
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-weight: 500;
  font-size: 2.4rem;
  padding: 2.4rem;
}
.journal_calendar_selector_year .arrow {
  transition: 0.2s;
  color: var(--light);
}
.journal_calendar_selector_year .arrow:hover {
  cursor: pointer;
  transform: scale(1.1);
  color: white;
}
.journal_calendar_selector_large {
  display: inline-block;
  position: relative;
  flex: 0 0 20%;
  height: 60rem;
  border-right: 0.2rem solid var(--bg-m);
}
.journal_calendar_selector_small {
  flex: 0 0 80%;
}
.journal_calendar_selector_small_holder {
  padding: 2.4rem;
}
.journal_calendar_cnt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.journal_calendar_holder {
  border-radius: 2.4rem;
  height: 60rem;
  width: 120rem;
  background-color: var(--bg-c);
}
.journal_calendar_day {
  height: 6.4rem;
  transition: 0.2s;
}
.journal_calendar_day.entryAvailable {
  color: var(--edit);
}
.journal_calendar_day.entryAvailable.active {
  background-color: var(--edit);
}
.journal_calendar_day.active {
  color: var(--white);
  background-color: var(--hero-m);
  border-radius: 100rem;
}
.journal_calendar_day:hover {
  cursor: pointer;
  color: var(--text-h);
}
.journal_calendar_btn {
  display: inline-block;
  background-color: var(--bg-c);
  color: var(--text-h);
  padding: 1.2rem 2.4rem;
  border-radius: 2.4rem;
  text-align: center;
  transition: 0.2s;
  width: 100%;
}
.journal_calendar_btn:hover {
  cursor: pointer;
  background-color: var(--text-h);
  color: var(--bg-c);
}
.journal_calendar_btns_top {
  position: absolute;
  display: flex;
  width: 100%;
  gap: 2.4rem;
  transform: translateY(-125%);
}
.journal_calendar_btns_bottom {
  position: absolute;
  display: flex;
  width: 100%;
  gap: 2.4rem;
  bottom: 0;
  transform: translateY(125%);
}
.journal_calendar_btn_view {
  background-color: var(--hero-m);
  color: var(--white);
}
.journal_calendar_btn_view.inactive {
  background-color: var(--bg-c);
  color: var(--light);
}
.journal_calendar_btn_view.inactive:hover {
  cursor: not-allowed;
}
.journal_grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  color: var(--light);
  padding: 2.4rem;
}
.journal_grid div {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 80em) {
  .journal_calendar_holder {
    width: 100rem;
  }
}
@media screen and (max-width: 71.875em) {
  .journal_entry_holder {
    width: 90vw;
  }
}
@media screen and (max-width: 65.5em) {
  .journal_entry_header {
    height: 8.6rem;
  }
  .journal_entry_holder {
    width: 90vw;
  }
  .journal_entry_main {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 80% 1fr;
  }
  .journal_entry_main_btn {
    width: 90%;
  }
  .journal_entry_main_window {
    height: 95%;
    width: 80vw;
  }
  .journal_entry_main_window_cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.4rem;
    grid-column: 1/span 2;
    grid-row: 1;
  }
  .journal_entry_main_window_holder {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .journal_calendar {
    flex-direction: column;
  }
  .journal_calendar_day {
    height: 5.6rem;
  }
  .journal_calendar_selector_small_days_div {
    padding: 0 2.4rem;
  }
  .journal_calendar_selector_month {
    display: flex;
    overflow: scroll;
  }
  .journal_calendar_month_ul {
    flex-direction: row;
    position: relative;
    gap: 4.8rem;
    top: 0;
    transform: translate(0, 0);
  }
  .journal_calendar_holder {
    width: 90rem;
  }
}
@media screen and (max-width: 60.625em) {
  .journal_calendar_holder {
    width: 95vw;
  }
}
@media screen and (max-width: 56.25em) {
  .journal_entry_header {
    height: 10rem;
  }
}
@media screen and (max-width: 41.875em) {
  .journal_calendar_btns_top {
    flex-direction: column;
    gap: 0.4rem;
    transform: translateY(-105%);
  }
}
@media screen and (max-width: 34.375em) {
  .journal_calendar_holder {
    height: 80rem;
  }
  .journal_calendar_btn {
    font-size: 2.4rem;
  }
}
@media screen and (max-height: 55.625em) {
  .journal_calendar_cnt {
    transform: translate(-50%, -50%) scale(0.9);
  }
}
@media screen and (max-height: 53.3125em) {
  .journal_entry_holder {
    height: 70rem;
  }
  .journal_entry_header {
    height: 8rem;
  }
}
@media screen and (max-height: 51.25em) {
  .journal_calendar_holder {
    height: 60rem;
  }
}
@media screen and (max-height: 48.625em) {
  .journal_entry_holder {
    height: 65rem;
  }
  .journal_entry_header {
    height: 7rem;
  }
}
@media screen and (max-height: 42.5em) {
  .journal_entry_header {
    height: 6rem;
  }
  .journal_entry_holder {
    height: 55rem;
  }
}
@media screen and (max-height: 36.25em) {
  .journal_entry_holder {
    height: 50rem;
  }
}
.edit_section {
  height: 120rem;
  background-color: var(--bg-m);
  position: relative;
}
.edit_cnt {
  height: 100rem;
  width: 160rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg-c);
  border-radius: 2.4rem;
  overflow: hidden;
}
.edit_holder {
  height: 100%;
  padding: 2.4rem;
  display: flex;
  gap: 2.4rem;
}
.edit_entries_entry {
  padding: 2.4rem;
  background-color: var(--bg-c);
  border-radius: 2.4rem;
  text-align: center;
  transition: 0.2s;
}
.edit_entries_entry:hover {
  color: var(--light);
  cursor: pointer;
}
.edit_entries_entry.locked {
  color: var(--light);
  background-color: var(--bg-m);
}
.edit_entries_entry.locked.selected {
  color: var(--text-h);
}
.edit_entries_entry.locked:hover {
  color: var(--light);
  background-color: var(--bg-m);
  cursor: not-allowed;
}
.edit_entries_entry.unsaved {
  color: var(--error);
}
.edit_entries_btn_add {
  width: 100%;
  background-color: var(--bg-m);
  color: var(--text-h);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem;
  border-radius: 100rem;
  transition: 0.2s;
}
.edit_entries_btn_add:hover {
  cursor: pointer;
  background-color: var(--text-h);
  color: var(--bg-m);
}
.edit_entries_btn_add.inactive {
  color: var(--bg-c);
}
.edit_entries_btn_add.inactive:hover {
  cursor: not-allowed;
  color: var(--bg-c);
  background-color: var(--bg-m);
}
.edit_entries_cnt {
  background-color: var(--bg-m);
  flex-grow: 1;
  border-radius: 2.4rem;
  gap: 2.4rem;
  padding: 2.4rem;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
}
.edit_entries_cnt::-webkit-scrollbar {
  display: none;
}
.edit_main_window {
  display: flex;
  gap: 2.4rem;
  flex-direction: column;
  height: 100%;
  width: 100%;
  transition: 0.2s;
}
.edit_main_window.inactive {
  opacity: 0;
}
.edit_main_header {
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: var(--bg-c);
  border-radius: 2.4rem;
}
.edit_main_header_label {
  padding: 2.4rem;
}
.edit_main_header_btns {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  height: 100%;
  padding: 0.8rem;
  padding-right: 2.4rem;
  gap: 2.4rem;
}
.edit_main_header_btns_list {
  display: flex;
  gap: 2.4rem;
}
.edit_main_header_btns_list.inactive {
  display: none;
}
.edit_main_header_btn {
  height: 100%;
  aspect-ratio: 1;
  background-color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100rem;
  transition: 0.2s;
}
.edit_main_header_btn:hover {
  filter: brightness(50%);
  cursor: pointer;
}
.edit_main_header_btn_delete {
  background-color: var(--error);
}
.edit_main_header_btn_cancel, .edit_main_header_btn_return {
  background-color: var(--neutral);
}
.edit_main_header_btn_edit {
  background-color: var(--edit);
}
.edit_main_header_btn_savepub {
  background-color: var(--success);
}
.edit_main_header_btn_icon {
  font-size: 2.6rem;
}
.edit_main_editor {
  flex-grow: 1;
  width: 100%;
  background-color: var(--bg-c);
  border-radius: 2.4rem;
  overflow: hidden;
  position: relative;
}
.edit_main_editor_failsafe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 999999999;
  transition: 0.2s;
}
.edit_main_editor_failsafe.inactive {
  opacity: 0;
}
.edit_main_editor_header {
  height: 10rem;
  background-color: var(--bg-c);
  border-radius: 2.4rem;
}
.edit_main_editor_header_holder {
  display: flex;
  height: 100%;
  gap: 2.4rem;
}
.edit_main_editor_header_settings {
  flex-grow: 1;
  background-color: var(--bg-m);
  border-radius: 2.4rem;
  padding: 2.4rem;
}
.edit_main_editor_header_settings_holder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.edit_main_editor_header_settings_time {
  background-color: var(--bg-c);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 100rem;
}
.edit_main_editor_header_settings_current {
  height: 100%;
  background-color: var(--bg-c);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 100rem;
  gap: 0.8rem;
}
.edit_main_editor_header_settings_current_label {
  white-space: nowrap;
  padding-left: 2.4rem;
}
.edit_main_editor_header_settings_current_btn {
  height: 100%;
  aspect-ratio: 1;
  background-color: var(--bg-m);
  border-radius: 100rem;
  transition: 0.2s;
}
.edit_main_editor_header_settings_current_btn.selected {
  background-color: var(--text-h);
}
.edit_main_editor_header_settings_current_btn:hover {
  cursor: pointer;
  filter: brightness(110%);
}
.edit_main_editor_header_settings_current_btn_cnt {
  height: 100%;
  width: 100%;
  padding: 0.8rem;
}
.edit_main_editor_header_styling {
  display: grid;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(2, 1fr);
  background-color: var(--bg-c);
}
.edit_main_editor_header_styling_btn {
  display: flex;
  width: 2.4rem;
  justify-content: center;
  background: transparent;
  border: none;
  align-items: center;
  transition: 0.2s;
  color: var(--white);
}
.edit_main_editor_header_styling_btn i {
  font-size: 1.6rem;
}
.edit_main_editor_header_styling_btn:hover {
  color: var(--text-h);
  cursor: pointer;
}
.edit_main_editor_holder {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.4rem;
  gap: 2.4rem;
}
.edit_main_editor_main {
  flex-grow: 1;
  width: 100%;
  background-color: var(--bg-m);
  border-radius: 2.4rem;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
}
.edit_main_editor_main_holder {
  flex-grow: 1;
  width: 100%;
  padding: 2.4rem;
  border-radius: 2.4rem;
  background-color: var(--bg-c);
  position: relative;
}
.edit_main_editor_main_editor {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2.4rem;
  border-radius: 2.4rem;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background-color: var(--bg-c);
}
.edit_main_editor_main_editor::-webkit-scrollbar {
  display: block;
  width: 1.2rem;
}
.edit_main_editor_main_editor::-webkit-scrollbar-track {
  background: transparent;
}
.edit_main_editor_main_editor::-webkit-scrollbar-thumb {
  background-color: var(--light);
  border: 0.4rem solid transparent;
  background-clip: padding-box;
  border-radius: 100rem;
}
.edit_main_editor_main_editor::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
}
.edit_main_sidebar {
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.edit_main_cnt {
  flex-grow: 1;
  padding: 2.4rem;
  background-color: var(--bg-m);
  border-radius: 2.4rem;
}

@media screen and (max-width: 103.1875em) {
  .edit_cnt {
    width: 90vw;
  }
}
@media screen and (max-width: 78.0625em) {
  .edit_holder {
    flex-direction: column;
  }
  .edit_entries_cnt {
    flex-direction: row;
  }
  .edit_entries_entry {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 51.8125em) {
  .edit_holder {
    padding: 1.2rem;
  }
  .edit_section {
    height: 160rem;
  }
  .edit_entries_btn_add {
    flex: 0 0 30%;
  }
  .edit_cnt {
    height: 140rem;
  }
  .edit_main_header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    gap: 0.8rem;
    padding: 0.8rem;
  }
  .edit_main_header_btns {
    padding: 0;
    height: 4.8rem;
    width: 100%;
    justify-content: center;
    align-self: center;
  }
  .edit_main_header_label {
    padding: 0;
    height: 4.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .edit_main_sidebar {
    flex: 0 0 10%;
  }
  .edit_main_window {
    gap: 0.8rem;
  }
  .edit_main_cnt {
    padding: 0.8rem;
  }
  .edit_main_editor_main {
    padding: 0.8rem;
  }
  .edit_main_editor_header {
    height: 30rem;
  }
  .edit_main_editor_header_styling {
    flex: 0 0 40%;
  }
  .edit_main_editor_header_settings {
    flex: 0 0 60%;
    padding: 0;
  }
  .edit_main_editor_header_settings_holder {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.8rem;
  }
  .edit_main_editor_header_holder {
    flex-direction: column;
    padding: 2.4rem;
  }
}
@media screen and (max-width: 87.5em) {
  .container {
    max-width: 100rem;
  }
}
@media screen and (max-width: 80em) {
  .container {
    max-width: 90rem;
  }
  .grid.col_2 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
@media screen and (max-width: 76.25em) {
  .container {
    max-width: 80rem;
  }
  .nav_menu.hidden {
    visibility: visible;
  }
  .nav.header.sticky .nav_container.gone {
    transform: translateY(0);
  }
  .nav.header .nav_items {
    left: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
    top: 50vh;
    right: 0;
    transform: translate(-100%, -50%);
    background-color: var(--bg-c);
    padding: 2.4rem 0;
    border-radius: 0 2.4rem 2.4rem 0;
    outline: 0.2rem solid var(--bg-m);
    width: -moz-fit-content;
    width: fit-content;
  }
  .nav.header .nav_items.gone {
    transform: translate(0%, -50%);
  }
}
@media screen and (max-width: 59.375em) {
  .container {
    max-width: 70rem;
  }
  .notif_alert {
    width: 60rem;
  }
  .acc_header::after {
    width: 10.2rem;
  }
  .acc_header_btn {
    width: 10.2rem;
    height: 6.4rem;
  }
  .acc_container {
    height: 70rem;
    width: 40rem;
  }
  .acc_form_form_container.grid {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 50em) {
  .container {
    max-width: 65rem;
  }
  html {
    font-size: 56.25%;
  }
}
@media screen and (max-width: 46.875em) {
  .container {
    max-width: 50rem;
  }
  .notif_alert {
    width: 40rem;
  }
  .nav.header .nav_items {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 37.5em) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 34.6875em) {
  html {
    font-size: 43.75%;
  }
}
@media screen and (max-width: 31.25em) {
  .container {
    max-width: 35rem;
  }
}
@media screen and (max-width: 25em) {
  .container {
    max-width: 30rem;
  }
  html {
    font-size: 37.5%;
  }
}
@media screen and (max-width: 21.875em) {
  html {
    font-size: 31.25%;
  }
}
@media screen and (max-width: 15.625em) {
  .container {
    max-width: 25rem;
  }
  html {
    font-size: 25%;
  }
}/*# sourceMappingURL=main.css.map */