* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    --hue: 127;
    --color-primary: oklch(76% 0.16 var(--hue));
    --color-pale: oklch(88% 0.07 var(--hue));
    --color-light: oklch(95% 0.02 var(--hue));
    --color-dark: oklch(34% 0.14 var(--hue));
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}
#nav-menu {
    width: 280px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding-right: 40px;
    list-style-type: none;
    text-align: end;
    background-color: var(--color-light);
}
.nav-menu-item a {
    text-decoration: none;
    color: var(--color-dark);
}
.nav-menu-item.highlighted a::before {
    content: '>';
    margin-right: 8px;
}
#slides {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scrollbar-width: none;
    scroll-snap-type: y mandatory;
    background-color: var(--color-pale);
}
.slide {
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    overflow: hidden;
}
@font-face {
    font-family: 'ambery-garden';
    src: url('/fonts/ambery-garden.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
.logo {
    font-family: 'ambery-garden', sans-serif;
    font-size: 3rem;
    color: var(--color-dark);
}

@media (max-width: 920px) {
    body {
        flex-direction: column;
    }
    #nav-menu {
        flex-direction: row;
        align-items: center;
        width: 100%;
        height: 60px;
    }
    .nav-menu-item.highlighted a::before {
        content: none;
    }
    .nav-menu-item.highlighted a {
        text-decoration: underline;
    }
}
@media (max-width: 800px) {
    #nav-menu {
        display: none;
    }
}
