@import "./catppuccin/latte.css" (prefers-color-scheme: light);
@import "./catppuccin/frappe.css" (prefers-color-scheme: dark);


html {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--base);
    font-size: 1.1rem;
    line-height: 1.5rem;
    color: var(--text);
}

body {
    width: 100%;
    min-height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

h1,h2,h3,h4,h5,h6 {
    text-align: center;
    color: var(--subtext-1);
}

.subtitle {
    font-size: large;
    font-style: italic;
    margin: -1rem 0 0 0;
    padding: 0
}

main, section {
    border: 1px solid var(--overlay-2);
    margin: 2rem;
    padding: 0 16px 12px 16px;
    border-radius: 12px;
    box-shadow: 1px 1px 1rem var(--overlay-1);
    background-color: var(--surface-1);
}

ul.inline-nav {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

em {
    font-weight: 600;
}

nav {
    background: var(--crust);
    margin: 0;
    padding: 12px;
}

footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--mantle);
    padding: 12px;
    border-top: 1px solid var(--overlay-2);
    margin-top: auto;
}

a {
    color: var(--blue);
}
