@charset "UTF-8";html,body,div,h1,p,a,img,strong,ul,li,nav {
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
}

nav {
    display: block;
}

/* TODO FIX FOR PHONE */
object{
	display: block;
    max-width: 550px;
}

body {
    line-height: 1;
}

ol,ul {
    list-style: none;
}

button {
	color: black;
	background-color: #6bc587;
	border: none;
}

select {
	color: black;
	background-color: #6bc587;
	border: none;
}

.paintContainer {
	display: flex;
	gap: 1rem;
}

.lgtIMG,
.drkIMG {
	display: none;
}

.can {
}

:root {
    --text-color: #000;
    --inverted-text-color: #fff;
    --background-color: #f7f7f7;
    --secondary-background-color: #eee;
    --primary-color: #000;
    --logo-color: #000;
    --logo-hover-color: var(--text-color);
    --link-color: #222;
    --link-highlight-color: #6bc587;
    --pre-text-color: #f8f8f2;
    --pre-background-color: #282a36;
}

@media(prefers-color-scheme: light) {
	.lgtIMG {
		display: block;
	}
}
@media(prefers-color-scheme: dark) {
    :root {
        --text-color:#fff;
        --inverted-text-color: #000;
        --background-color: #222;
        --secondary-background-color: #222;
        --primary-color: #fff;
        --logo-color: #222;
        --logo-hover-color: #222;
        --link-color: #fff;
        --link-highlight-color: #6bc587;
		.drkIMG {
			display: block;
		}
    }
}

* {
    box-sizing: border-box;
}

html {
    font-family: noto sans,system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
    font-size: 16pt;
    color: var(--text-color);
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    line-height: 2rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

strong {
    font-weight: 900;
}

indent {
    position: relative;
    left: 30px;
}

a {
    color: var(--link-color);
    text-decoration: underline;
    text-decoration-color: var(--link-highlight-color);
    text-decoration-thickness: 2px;
}

a:hover,a:focus {
    text-decoration: none;
    background: var(--link-highlight-color);
    outline: none;
}

a:active {
    position: relative;
    top: 1px;
}

::selection {
    color: var(--inverted-text-color);
    background: var(--primary-color);
}

h1 {
    font-weight: 900;
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1em;
}

.spaced-list>li {
    margin-bottom: 1em;
}

.flex {
    display: flex;
}

.logo {
    display: inline-block;
}

.logo__image {
    border-radius: 100%;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
    color: transparent;
}

.logo .logo__image {
    transition: background .1s ease-out;
}

.logo:hover,.logo:focus {
    background: 0 0;
    outline: none;
}

.logo:hover .logo__image,.logo:focus .logo__image {
    background: var(--logo-hover-color);
}

.nav {
    margin-left: auto;
    margin-right: auto;
    max-width: 50ch;
    width: calc(100% - 1rem);
    display: flex;
    justify-content: space-around;
    align-items: center;
    line-height: 1em;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.nav__logo {
    margin-inline-end:1rem;
}

.nav__logo:hover,.nav__logo:active {
    background: inherit;
}

.nav .logo__image {
    width: 64px;
    height: 64px;
}

.nav__links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 80%;
}

@media(max-width: 550px) {
    .nav {
        flex-direction:column;
        margin-top: 0;
    }

    .nav__logo {
        margin: 1rem auto;
    }

    .nav .logo__image {
        width: 96px;
        height: 96px;
    }

    .nav__links {
        justify-content: center;
        line-height: 1em;
    }
}

.content-page {
    margin-left: auto;
    margin-right: auto;
    max-width: 50ch;
    width: calc(100% - 1rem);
    line-height: 24px;
    overflow-wrap: anywhere;
}

.content-page h1,.content-page p,.content-page ul {
    margin-bottom: 1.5rem;
}

.content-page h1 {
    line-height: 1.25em;
}

.content-page p,.content-page ul {
    line-height: 1.75em;
}


.content-page h1 {
    margin-top: 0;
}

.content-page ul {
    padding-left: 1em;
    padding-right: 1em;
}

.content-page ul>li {
    list-style-type: square;
}

.content-page li ul {
    padding-left: 2em;
    padding-right: 2em;
}

.content-page img {
    max-width: 100%;
}
