html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 300;
	font-size: 105%;
	color: #000000;
}

body {
	margin: 0 15%;
}

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

header {
	margin-left: 70%;
	margin-top: 10px;
	width: 15%;
	background: #007ea2;
	height: 20vw;
	flex-shrink: 0;
	position: relative;
}

header img {
	width: 56%;
	height: auto;
	margin-left: 22%;
	bottom: 2vw;
	position: absolute;
}

main {
	display: flex;
	width: 100%;
	margin: 40px 0;
	flex: 1 0 auto;
}

#info {
	flex: 0 0 60%;
	margin-left: 10%;
}

ul {
	margin-top: 40px;
}

li {
	list-style-type: none;
	margin: 15px;
	display: block;
}

li a, li a:visited, li a:hover, li a:active {
	color: #000000;
	background: #e4e4e4;
	text-decoration: none;
	display: inline-block;
	padding: 13px 20px;
	margin: 5px;
	position: relative;
}

aside {
	flex: 0 0 15%;
}

aside img {
	width: 100%;
	height: auto;
	border-radius: 50%;
}

footer {
	background: #454545;
	margin-bottom: 20px;
	width: 100%;
	min-height: 14vh;
	bottom: 10px;
	flex-shrink: 0;
}

#empty {
	margin-left: 70%;
	background: #ffffff;
	width: 15%;
	min-height: inherit;
	color: #007ea2;
	text-align: right;
}

#empty:first-child {
	padding-top: 10px;
}

#empty p {
	margin: 0;
	padding: 0 10px 0 0;
}

.bold {
	font-weight: 500;
}

.big {
	font-size: 140%;
}

@media (pointer: coarse) and (orientation: portrait), (pointer: fine) and (max-aspect-ratio: 1/1) {
	html, body {
		margin: 0;
	}

	header {
		margin-top: 20px;
		margin-left: 40%;
		width: 50%;
		height: 42vh;
	}

	header img {
		bottom: 4vh;
	}

	main {
		display: flex;
		flex-direction: column;
		width: calc(100% - 40% - 10%);
		margin: 80px 10% 0 40%;
	}

	#info {
		order: 2;
		width: 96%;
		margin-bottom: 80px;
		margin-left: 2%;
	}

	li {
		margin: 0;
	}

	li a, li a:visited, li a:hover, li a:active {
		margin: 10px 0;
	}

	aside {
		order: 1;
		width: 96%;
		margin-left: 2%;
	}

	footer {
		margin: 0 0 20px 0;
		width: 100%;
	}

	#empty {
		margin-left: 40%;
		width: 50%;
		padding-bottom: 15px;
	}

	#empty:first-child {
		padding-top: 5px;
	}

	#empty p {
		padding-right: 20px;
	}
}

@media (pointer: coarse) and (orientation: landscape) {
	html, body {
		margin: 0;
	}

	header {
		margin-left: 65%;
		width: 20%;
		height: 32vw;
	}

	header img {
		bottom: 3vw;
	}

	#info {
		flex: 0 0 55%;
	}

	aside {
		flex: 0 0 20%;
	}

	li a, li a:visited, li a:hover, li a:active {
		margin: 5px 0;
	}

	#empty {
		margin-left: 65%;
		width: 20%;
		padding-bottom: 15px;
	}
}

@media (pointer: fine) {
	li a:before {
		content: "";
		position: absolute;
		width: calc(100% - 2 * 18px);
		height: 2px;
		bottom: 9px;
		left: 18px;
		background-color: #007ea2;
		visibility: hidden;
		transform: scaleX(0);
		transition: all 0.3s ease-in-out;
	}

	li a:hover:before {
		visibility: visible;
		transform: scaleX(1);
	}
}