* {
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
}

html { 
    color-scheme: light dark;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
	height: 100%;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 8rem;
    padding: 0 1rem;
    background-color: rgb(0,0,0);
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    padding: 0 1rem;
}

footer {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 32px;
    background-color: rgb(0,0,0);
    padding: 0 1rem;
}

h1,h2,h3,h4,h5 {
    margin: 0;
    padding: 0;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

header h1 {
    height: 2rem;
    line-height: 2rem;
}

header .flex-row {
    height: 75%;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 100%;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
}