.sekuya-regular {
  font-family: "Sekuya", system-ui;
  font-weight: 400;
  font-style: normal;
}


.floating_box {
    width: fit-content;
    height: fit-content;
    padding: 18px 28px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px) saturate(135%);
    -webkit-backdrop-filter: blur(12px) saturate(135%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.floating_box:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.26);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}


.top_nav {
    display: flex;
    gap: 12px;
    padding: 0;
}


.top_nav button {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    color: #FFE8C2;
    font-family: 'Sekuya', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.3px;
    padding: 10px 20px;
    cursor: pointer;
    backdrop-filter: blur(12px) saturate(135%);
    -webkit-backdrop-filter: blur(12px) saturate(135%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.top_nav button:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}

.top_nav button[aria-current="page"] {
    background: rgba(255, 184, 107, 0.2);
    border-color: rgba(255, 184, 107, 0.7);
    color: #FFB86B;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.top_nav button[aria-current="page"]:hover {
    transform: none;
}

.top_nav button:active {
    transform: translateY(0);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.top_nav button:focus-visible {
    outline: 2px solid rgba(255, 184, 107, 0.95);
    outline-offset: 2px;
}




body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: flex-start;
  align-items: center;
  padding-top: 40px;
    background-image: url(../media/background.png);
  background-size: cover;
  background-position: center;
  animation: page_fade_in 420ms ease-out;
}

body > .top_nav,
body > .floating_box {
    opacity: 0;
    transform: translateY(12px);
    animation: rise_in 500ms ease-out forwards;
}

body > .top_nav {
    animation-delay: 40ms;
}

body > .floating_box:nth-child(2) {
    animation-delay: 130ms;
}

body > .floating_box:nth-child(3) {
    animation-delay: 220ms;
}

body.is-leaving {
    animation: page_fade_out 220ms ease-in forwards;
    pointer-events: none;
}

@keyframes page_fade_in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes page_fade_out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes rise_in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    body,
    body.is-leaving,
    body > .top_nav,
    body > .floating_box,
    .floating_box,
    .top_nav button {
        animation: none;
        transition: none;
    }
}


h1 {
    font-family: 'Sekuya', Tahoma, Geneva, Verdana, sans-serif;
    color: #FFE8C2;
    text-align: center;
    margin: 0;
}

h2 {
    text-align: center;
    color: #FFB86B;
}

h3 {
    color: #FFE8C2;
    text-align: center;
}

p {
    text-align: center;
    color: #FFB86B;
}

