
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500&display=swap');

*
{
	font-family: 'Quicksand', sans-serif;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

html
{
	width: 100%;
	height: 100%;
}

body
{
	width: 100%;
	min-width: min-content;
	padding: 3em 1em;
	display: grid;
	gap: 3em;
	justify-items: center;
	align-items: center;
	justify-content: stretch;
	align-content: stretch;
	overflow-y: scroll;
}

section
{
	min-width: min-content;
	display: grid;
	gap: 1em;
	justify-items: start;
	align-items: stretch;
	justify-content: stretch;
	align-content: stretch;
}

section > *
{
	width: 100%;
	height: 100%;
}

h1,h3, .center
{
	text-align: center;
}

svg
{
	font-weight: lighter;
	min-width: 0;
	min-height: 0;
	width: 100%;
	height: 100%;
}

img
{
	min-width: 0;
	min-height: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

ul
{
	padding: 0 1em;
	list-style-position: outside;
	list-style-type: disc;
}

.showcase
{
	aspect-ratio: 3/2;
}

.small
{
	font-size: small;
}

/* landscape */
@media screen and (min-aspect-ratio: 13/9)
{
	body > *
	{
		width: 50%;
	}
}

/* portrait */
@media screen and (max-aspect-ratio: 13/9)
{
	body > *
	{
		width: 100%;
	}
}
