@font-face {
	font-family: Noto;
	font-weight: 100;
	src: url(../font/NotoSans-Light.ttf);
}

@font-face {
	font-family: Noto;
	font-weight: 300;
	src: url(../font/NotoSans-Regular.ttf);
}

@font-face {
	font-family: Noto;
	font-weight: 500;
	src: url(../font/NotoSans-Medium.ttf);
}

@font-face {
	font-family: Noto;
	font-weight: 700;
	src: url(../font/NotoSans-SemiBold.ttf);
}

@font-face {
	font-family: Noto;
	font-weight: 900;
	src: url(../font/NotoSans-Bold.ttf);
}

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

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

.center {
	justify-content: center;
}

.a_center {
	align-items: center;
}

:root {
	--theme0: black;
	--theme1: #0E212F; /* 206 54 12 */
    --theme2: #273D4E; /* 206 33 23 */
    --theme3: #526D82; /* 206 23 42 */
    --theme4: #9DB0BF; /* 206 21 68 */
    --theme5: #DDE6ED; /* 206 31 90 */
    --theme6: white;
	--main-font: Noto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: 100%;
	color: var(--theme5);
	background-color: var(--theme1);
	font-family: var(--main-font);
	font-weight: 100;
	transition: background-color linear 0.1s;
}

a {
	all: unset;
}

.header {
	position: relative;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 50px;
	padding: 0 20px 0 20px;
	color: var(--theme4);
}

.header span {
	font-size: 30px;
	font-weight: 300;
}

.cont {
	padding-left: 20px;
	width: 100%;
	height: 100%;
	position: relative;
}

.icon {
	height: 30px;
	width: 30px;
	color: var(--theme4);
}

#menu {
	cursor: pointer;
	position: relative;
}

.flyout {
	position: absolute;
	right: 5px;
	top: 35px;
	max-height: 0px;
	max-width: 0px;
	z-index: 1;
	overflow: hidden;
	border-radius: 5px;
	border: 3px solid var(--theme2);
	opacity: 0;
}

.flyout.open {
	max-height: 100vw;
	max-width: 100vh;
	opacity: 1;
	transition: all ease-in-out 0.25s;
}

.item {
	padding: 5px 10px 5px 10px;
}

.item:hover {
	background-color: var(--theme3);
}

.item:hover * {
	color: var(--theme1);
}

.item a {
	width: 100%;
	height: 30px;
}

.item span {
	display: block;
	width: 100%;
	font-size: 18px;
	line-height: 30px;
	padding-left: 10px;
}

h1 {
	font-weight: 300;
	color: white;
}

button {
	min-width: 150px;
	min-height: 36px;
	text-align: center;
	font-size: 18px;
	margin-right: 10px;
	border-radius: 5px;
	border: 3px solid var(--theme2);
	background-color: var(--theme3);
	color: var(--theme5);
}

button:hover {
	border: 3px solid var(--theme3);
	background-color: var(--theme4);
}

input {
	min-width: 350px;
	min-height: 36px;
	font-size: 18px;
	border-radius: 5px;
	color: var(--theme0);
	border: 3px solid var(--theme2);
	background-color: var(--theme4);
	padding: 0 5px 0 5px;
}

input:focus {
	outline: none;
	border: 3px solid var(--theme3);
}

input:hover {
	border: 3px solid var(--theme3);
}

.cont span {
	font-size: 18px;
	color: var(--theme6);
}

.control_row, .control_group {
	margin: 5px 0 5px 0;
}

#data_display {
	margin-top: 5px;
	padding: 5px;
	max-width: 800px;
	min-height: 400px;
	color: var(--theme0);
	font-size: 20px;
	font-weight: 300;
	background-color: var(--theme4);
	border: 2px solid var(--theme3);
	border-radius: 5px;
}

.top_space {
	margin-top: 20px;
}

.team_column {
	width: 50%;
}

.team_column_title {
	font-weight: 800;
	font-size: 26px;
	text-decoration: underline;
}

.team_border {
	border: 2px solid var(--theme4);
	border-radius: 5px;
	margin: 10px 60% 10px 0px;
	padding: 20px;
}

.team_title {
	font-size: 22px;
	font-weight: 500;
	margin: 0px 0 20px 0;
}
