* {
	box-sizing: border-box;
	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
	margin: auto;
	margin-collapse
}

:root {
	--color-bg: #f9fbff;
	--color-text: #070400;
	--color-accent: #11694f;
}

body {
	color: var(--color-text);
	background-color: var(--color-bg);
}

.visually-hidden {
		position: absolute;
		width 1px;
		height 1px;
		padding 0;
		margin -1px;
		overflow: hidden;
		clip: rect(0,0,0,0);
		white-space: nowrap;
		border: 0;
}

/* main container */

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 16px 8px 4px 8px;
	margin: auto;
}

/* Semantic layout elements */
header.header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

main {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
}

section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

section > * {
	margin: 8px 0px;
}

footer {
	text-align: center;
	padding: 16px 0;
	color: var(--color-accent);
}

footer > p {
	font-size: 0.85em;
}


/* logo styling */

.logo {
	margin: 16px 0;
}

.logo > img {
	width: 100%;
	max-width: 450px;
	height: auto;
}

/* text styling */

h1 {
	font-style: normal;
	font-weight: 600;
	font-size: 32px;
	color: var(--color-accent);
	line-height: 150%;
	text-align: center;
}

h2 {
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 150%;
	text-align: center;
	color: var(--color-text);
}

h3 {
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 150%;
	text-align: center;
	color: var(--color-accent);
}

p {
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 150%;
	text-align: center;
	color: var(--color-text);
	flex-grow: 0;
}

/* event details styling */

table {
	border-spacing: 8px;
}

tr > td {
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 150%;
	text-align: start;
	color: var(--color-text);
}

tr > td:nth-child(1) {
	color: var(--color-accent);
	padding-right: 8px;
}

/* Button styling */

a > button {
	border: none;
	width: 180px;
	height: 55px;
	color: var(--color-bg);
	background: var(--color-accent);
	border-radius: 4px;
	text-align: center;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	display: block;
}

a > button:hover {
	background: #0e563f; 
	box-shadow: inset 2px 2px 8px 0px rgba(0,0,0,0.18);
}


/* Socials list styling */
.socials {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 32px;
	list-style: none;
	padding: 0;
}

.socials li {
	margin: 0;
	display: flex;
	align-items: center;
}

.socials a {
	color: var(--color-text);
	font-size: 1.5em;
	transition: color 0.2s;
}

.socials a:hover {
	color: var(--color-accent);
}

/*
.bg-image {
	position: absolute;
	bottom: -88%;
}


.header h3 {
	text-align: center;
	color: var(--color-accent);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	margin: 0;
	line-height: 36px;
}

.header {
	max-width: 720px;
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0px;
	font-style: normal;
}

.header > h1 {
	font-style: normal;
	font-weight: 600;
	font-size: 32px;
	color: var(--color-accent);
	line-height: 150%;
	display: flex;
	align-items: center;
	text-align: center;
}



.socials {
	display: flex;
	flex-direction: row;
	margin: 16px 0;
}

.socials i {
	font-size: 1.5em;
}

.socials > a {
	color: var(--color-text);
	text-decoration: none;
	margin: 0px 8px;
	font-weight: 400;
	font-size: 24px;
	line-height: 150%;
}



@media screen and (max-width: 1024px) {
	.container {
		background-size: contain;
		background-position-y: center;
	}
}

@media screen and (max-width: 600px) {

	.container{
		background-size: contain;
		background-position-y: center;
	}
	pre {
		font-size: 0.8rem;
		padding: 8px 12px;
		width: 100%;
	}

	body {
		width: 100vw;
	}

	.header img {
		margin-left: 0;
	}

	.installation-steps {
		width: 100%;
		box-sizing: border-box;
	}

	h1 {
		font-size: 1.6rem;
	}

	ol {
		padding-left: 20px;
	}

	li {
		margin-bottom: 5px;
	}
}
*/

/* ^^^ OLD ^^^ */

