@font-face {
	font-family: SourceSerif;
	src: url(/vendor/SourceSerifPro-Regular.ttf);
}

/* General Texts */
a {
	text-decoration: none;
	color: hsl(39, 43%, 40%);
}

h2,
p {
	margin: 5px;
}

/* Areas */

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: hsl(197, 35%, 90%);
	font-family: SourceSerif;
	display: flex;
	flex-direction: column;
}

/* Header */
header {
	background-color: hsl(228, 30%, 17%);
	width: 100%;
	text-align: center;
	color: hsl(0, 0%, 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
}

#header {
	width: 100%;
}

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

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

.head_foot_block {
	display: flex;
	align-items: center;
	flex-grow: 1;
}

.head_foot_block.left {
	padding-left: 20px;
	justify-content: left
}

.head_foot_block.right {
	padding-right: 20px;
	justify-content: right
}

.head_foot_block.center {
	justify-content: center
}

.flag {
	height: 15px;
	padding: 2px;
}

#navig {
	margin-bottom: 0px;
	background-color: hsl(228, 50%, 40%);
	width: 100%;
	justify-content: center;
}

.navig-button {
	width: 100px;
	height: 35px;
	border-radius: 7px;
	background-color: hsl(228, 50%, 40%);
}

.navig-button a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	color: white;
}

.navig-button:hover {
	background-color: dodgerblue;
}

.navig-selected {
	background-color: hsl(228, 84%, 59%);
}

/* Content */
#content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 10px;
}

.item {
	display: flex;
	align-items: flex-start;
	flex-direction: row;
	width: 80vw;
}

.item-img-div {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 120px;
}

.icon-small {
	height: 30px;
	margin: 10px;
}

.item-text {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0px 10px;
	line-height: 1.5;
}

.item-img {
	border-radius: 10%;
	width: 120px;
	transition: filter 0.1s ease-in-out;
	margin: 5px 0px;
}

hr {
	width: 40%;
	margin: 40px;
	border: 1px solid #666;
}

/* Footer */
footer {
	background-color: hsl(228, 30%, 17%);
	text-align: center;
	padding: 20px;
	color: white;
	margin-top: auto;
}