
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    box-shadow: none;
}

button {
    background-color: transparent;
    border-radius: 0;
    cursor: pointer;
}

a {
    color: #699fe7;
}

body.col {
    gap: 0;
    cursor: default;
    caret-color: #699fe7 !important;
    padding-top: 80px;
    font-family: sans-serif;
		min-height: 100vh;
}

main, footer {
    position: relative;
    z-index: 5;
    padding: 18px;
		width: 100%;
}

header {
    background-color: #fff;
    width: 100vw;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
    padding: 0 24px 0 6px;
}
#logo {
    width: auto;
    height: 80px;
}

#menu {
    list-style: none;
    flex-flow: column nowrap;
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    height: calc(100vh - 80px);
    background-color: #fff;
    gap: 16px;
    display: none;
    width: 200px;
    padding: 16px;
    z-index: 10;
}
#menu.active {
    display: flex;
}

#menu-toggle {
    display: flex;
    flex-flow: column nowrap;
    gap: 6px;
}
#menu-toggle i {
    background-color: #699fe7;
    width: 30px;
    height: 1px;
    border-radius: 1px;
}

#banner {
    background: url("/media/20250912_071746.jpg");
    background-position-x: 50%;
    background-position-y: 33%;
    background-size: cover;
    width: 100vw;
    aspect-ratio: 2/1;
    display: flex;
		@media only screen and (max-width: 400px) {
			aspect-ratio: 1/1;
		}
}
#banner-overlay {
    background: linear-gradient(#fff 0%, rgba(255,255,255,.75) 10%, transparent, rgba(255,255,255,.875) 80%, #fff 100%);
    width: 100%;
    height: 100%;
    display: flex;
}
#slogan {
    color: #fff;
    font-size: 1.33em;
    padding: 32px;
    font-weight: bold;
}
.blurb {
    width: 100%;
    max-width: 400px;
}

footer {
	padding: 8px;
}

.copyright {
	opacity: .5;
	font-size: .75em;
}

.row, .col {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
}
.wrap {
    flex-wrap: wrap;
}
.row {
    flex-direction: row;
}
.col {
    flex-direction: column;
}
.grow {
    flex-grow: 1;
}
.align-center {
    align-items: center;
}
.just-end {
    justify-content: flex-end;
}
.just-center {
    justify-content: center;
}
.text-center {
    text-align: center;
}
