/*style.css*/
header{
	color: black; /* цвет текста*/
	background-color: steelblue; /*цвет фона*/
	font-family: Arial; /*тип шрифта*/
	letter-spacing: 0.1cm; /*растояние между букв*/
	text-align: center; /*местоположение заглавия*/
}
footer{
	text-align: center;
	background-color: steelblue;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	color: black;
}
main section{
	border-top: 6pt solid steelblue; /*dotted dashed*/
	border-bottom: 6pt solid steelblue;
	border-radius: 50px;
	padding: 1%;
	width: 30%;
}
/*h2 mis on section sees*/
main section h2{
	color: black;
	background-color: steelblue;
	font-family: Arial;
	letter-spacing: 0.1cm;
	text-align: center;

}
/*navigeerimismenüü w3shools lehed*/
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: lightblue;
}

li {
	float: left;
}

li a {
	display: block;
	color: black;
	text-align: center;
	padding: 20px 30px;
	text-decoration: none;
}

li a:hover {
	background-color: steelblue;
}

h4 {
	color: black;
	background-color: lightblue;
	text-align: left;
	letter-spacing: 0px;
	border-top: 3pt solid steelblue;
	border-bottom: 3pt solid steelblue;
	border-radius: 20px;
	padding: 2px;
	width: 40%
}
