* {
  box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
}
li {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-style: italic;
	font-size: 15px;
}
p {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-style: italic;
	font-size: 15px;
	text-align: justify;
	text-indent: 15px;
	margin: 0 10px;
}
h2 {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-style: italic;
	font-size: 17px;
	color: green;
	text-indent: 30px;
	margin: 10px 10px;
}
h1 {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-style: italic;
	font-size: 50px;
	font-weight: bold;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	text-align: center;
}
a {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-style: italic;
	font-size: 15px;
}
.vir {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-style: italic;
	font-size: 15px;
	text-align: justify;
	color: silver;
}
section a:link, 
footer a:link { 
   color: blue;
   text-decoration: none;
   font-style: italic;
}
section a:visited, 
footer a:visited {
   color: green;
   text-decoration: none;
   font-style: italic;
}
section a:hover, 
footer a:hover {
   color: blue;
   text-decoration: underline;
   font-style: normal;
}
section a:active, 
footer a:active {
   color: green;
   text-decoration: underline;
   font-style: normal;
}
img {
	width: 100%; 
    max-width: 350px; 
    height: auto;
    margin: 0 10px;
}
header {
	position: relative;
	height: 340px;
	background-image: url("header_image.jpg");
	background-size: cover;
    background-position: center;   
	background-repeat: no-repeat;
}
nav a {
	background-color: green;
	text-align: center;
	padding: 15px 30px;
	display: inline-block;
	text-decoration: none;
	font-size: 20px;
	margin: 0 10px;
	flex: 1;
	min-width: 150px;
}
nav {
	display: flex;
	justify-content: center;
	background-color: black;
	flex-wrap: wrap;
}
nav a:hover {
    background-color: darkgreen;
	text-decoration: none;
}
nav a:visited,
nav a:link {
	text-decoration: none;
	color: white;
}
footer {
	margin: 0 10px;
}
@media screen and (max-width: 600px) {
	img { 
	max-width: 100%; 
	height: auto;
	margin: 0;
	}
	nav {
    display: flex;             
	flex-direction: column;    
	align-items: center;
	gap: 8px;                  
	padding: 10px 0;
    }
	nav a {
	width: 90%!important;
    margin: 8px 0!important;
	display: block!important;
	}
	p {
    margin-bottom: 15px;
	text-indent: 0;
	}
	h2 {
	text-indent: 0;
	}
}
@media screen and (max-width: 992px) {
	nav {       
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;              
    }
	nav a{
	width: 150px;
	padding: 12px 10px;
	flex: 1 1 45%;
	}
	p {
    margin-bottom: 15px;
	text-indent: 0;
	}
	h2 {
	text-indent: 0;
	}
}
.active {
	background-color: darkgreen;
	text-decoration: underline!important;
}


	
