/* style.css*/
header{
	background-color: yellow; /*tausta värv*/
	font-family: "Bauhaus 93", Arial, Georgia;
	letter-spacing: 0.3cm;
	text-align: center;
}
footer{
	position: fixed;
	bottom: 0;
	background-color: yellow;
	width: 100%;
	text-align: center;
	
}
main section{
	border-left: 6pt solid yellow; /*dotted dashed */
	border-right: 6pt solid yellow; 
	border-radius: 60px;
	padding: 2%;
	width: 30%;
	position: relative;
}
/*h2 mis on section sees*/
main section h2{
	color: black; /*teksti värv*/
	background-color: yellow; /*tausta värv*/
	font-family: "Bauhaus 93", Arial, Georgia;
	letter-spacing: 0.3cm;
	text-align: center;
	position: relative;
}
/*navigeerimismenüü w3shools lehelt*/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: yellow;
}

li {
  float: left;
}

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

li a:hover {
  background-color: #111;
}






