@charset "utf-8";

#horizon {
	background-image: linear-gradient(to bottom left, rgb(0,102,204), white);
	min-height: 100px;
	padding: 5px;
	text-align: right;
}

#horizon img {
	float: right;
	margin-left: 5px;
	border: 1px solid white;
	max-height: 86px;
}

#weather {
	display: inline-block;
	min-width: 100px;
	min-height: 86px;
}

#weather:hover {
	cursor: pointer;
}

#weather_week {
	display: none;
	position: absolute;
	right: 0;
	z-index: 1;
	background-color: rgb(7, 161, 199);
}

#weather_today:hover + #weather_week {
	display: block;
}

#horizon th, td {
	padding: 0 5px;
}

header nav {
	background-color: white;
	color: black;
	height: 50px;
}

header nav ul {
	overflow: hidden;
}

header nav ul li {
	float: left;
	font-size: 20px;
	padding: 10px 15px;
}

header nav ul li:hover {
	background-color: black;
	color: white;
	cursor: pointer;
}

header nav ul li.active_tab {
	background-color: black;
	color: white;
}

main {
	font-size: 18px;
	font-family: Arial, sans-serif;
}

main section {
	margin: 10px;
	padding: 10px;
}

h2 {
	font-size: 1.2em;
}

main section ul {
	list-style: square inside;
}

main section ul li {
	padding: 5px;
}

main section table {
	border: 1px solid white;
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 10px;
}

main section td {
	border: 1px solid white;
	padding: 10px;
	max-width: 500px;
	vertical-align: middle;
}

em {
	font-style: italic;
}

button {
	font-size: 16px;
	padding: 7px;
}

.m-10 {
	margin: 10px;
}

.clearfix::after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
  	height: 0;
}