/* z-indexes:
* -20 background
* -19-10 text
* -0-0 overlays
*/
html {
	height: 100%;
}
body {
	background-image: url('/assets/20230408_090321.jpg');
	background-size: cover;
	background-attachment: fixed;
	overflow: hidden;
	position: fixed;
	margin: 0px;
	color: white;
	height: 100%;
	width: 100%;
}
div {
	/*
	border: 1px solid white;
	*/
}
a {
	color: white;
}
.title {
	font-size: 108pt;
	font-family: Arial, sans-serif;
}
.full-width {
	width: 100%;
}
#logo {
	display: flex;
	background-image: url("/assets/co_si_logo_black.png");
	background-position: bottom right;
	background-size: contain;
	background-repeat: no-repeat;
	width: 25%;
	padding-left: 10%;
	margin: 5px;
	filter: invert();
	flex-grow: 0;
}
#header {
	display: flex;
	justify-content: space-between;
	height: 10%;
	border-bottom: 10px solid white;
}
.header-chunk {
	align-self: stretch;
	display: flex;
	width: 40%;
}
#header-right {
	justify-content: flex-end;
}
#language-picker {
	align-self: flex-end;
	justify-self: flex-start;
	padding-right: 5%;
	display: flex;
}
#nav {
	align-self: flex-end;
	justify-self: flex-end;
	padding-right: 5%;
	display: flex;
}
#title {
}
#subtitle {
	padding-left: 100px;
}
#main {
	flex-grow: 1;
}
#footer {
	height: 5%;
	border-top: 5px solid white;
	justify-self: flex-end;
}
.row {
	display: flex;
}
.column {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.language-option {
	padding-right: 10px;
	padding-left: 10px;
	font-size: 16pt;
}
.nav-item {
	padding-right: 10px;
}
.small {
	font-size: 8pt;
}
.content {
	display: flex;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	top: 50vh;
	padding: 5px;
	backdrop-filter: brightness(50%) blur(2px);
	-webkit-backdrop-filter: brightness(50%) blur(2px);
	height: 300px;
	width: 500px;
	transition-property: transform;
	transition-duration: 1s;
}
.content-border {
	visibility: inherit;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-grow: 1;
	align-content: stretch;
	border: solid white 1px;
}
.content-text {
	visibility: inherit;
	text-align: center;
	font-family: Arial, sans-serif;
/*	font-weight: bold; */
	font-size: 18pt;
}
/* when a content card is not focused it is pulled off the bottom of the screen */
.content.unfocused {
	transform: translateY(100vh);
	transition-property: transform;
	transition-duration: 1s;
}