body {
	font-size: 20px;
	font-family: Verdana, Arial, sans-serif;
	background-color:lightblue;
	box-sizing: border-box;
}
*{
	margin:0;
	padding:0;
}
#container {
	position:relative;
	max-width: 1200px;
	margin: 0 auto;
}
header {
	margin:0;
	padding:0;
	max-width: 1200px;
	max-height: 800px;
	background-color: lightblue;
	background-position: left center;*/
}
header figure{
	position:absolute;
	max-width:10%;
	max-height:10%;
	filter:opacity(150%);
}
img {
	max-width: 100%;
	max-height: 100%;
}

/*menu*/
nav{
	background-color: lightblue;
	position:sticky;
	top:0;
	z-index:10;
}
nav ul {
	display: flex;
	flex-flow: row wrap;
	column-gap: 2px;
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-weight:bold;
}
nav ul li {
	flex: 1;
	background-color: rgb(228,247,248);
}
nav ul li a {
	color: black;
	text-decoration: none;
	text-align:center;
	padding: 10px 20px;	
	display: block;
	font-size: 1rem;
}
nav ul li a:hover {
	color: white;
	background-color:black;
	cursor:pointer;
}
nav ul li a:active {
	color: white;
}
section{
	position:relative;
	max-width: 100%;
	text-align:justify;
	padding: 2%;
	z-index:5;
}
section figure{
	position:relative;
	margin:30px 0;
	max-height:100%;
}
section figure figcaption{
	align-self:center;
	margin:10px 0;
}
section figure figcaption .left{
	position: absolute;
    background-color: #555;
	color: white;
	font-size: 16px;
	padding: 12px 24px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	margin-left:20%;
}
section figure figcaption .right{
	position: absolute;
    background-color: #555;
	color: white;
	font-size: 16px;
	padding: 12px 24px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	margin-left:70%;
}
h1{
	text-align:left;
}
h3{
	padding-top:30px;
	text-align:left;
}
p{
	padding:2% 0;
}
p.midden{
	text-align:center;
}
#nesta {
	min-height: 400px;
	background-color: lightblue;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
#nesta article {
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	flex: 1;
	row-gap: 4px;
}
#nesta article img{
	max-width:195px;
	max-height:130px;
}
#nesta article:nth-of-type(7) img, #nesta article:nth-of-type(8) img{
	border:5px solid blue;
}
#nesta article:nth-of-type(1) img, #nesta article:nth-of-type(2) img, #nesta article:nth-of-type(3) img, #nesta article:nth-of-type(4) img, #nesta article:nth-of-type(5) img, #nesta article:nth-of-type(6) img{
	border:5px solid rgba(255, 178, 211);
}
#nesta article .pup{
	text-align: left;
}	
footer{
	max-width: 100%;
	height: 80px;
	background-color: rgb(255, 255, 255);
}
footer section{
	text-align:center;
	padding: 30px 0;
	font-size: 1rem;
	color:black;
	margin-top:-82px;
}
footer aside{
	display: flex;
	flex-direction: row;
	justify-content:flex-end;
	margin-top:-51px;
}
footer aside span {
	background-color: rgba(255, 178, 211, 0.8);
	text-align: center;
	border: 3px solid blue;
	border-radius: 50%;
	margin-right:4px;
	transition: width 2s, height 2s;
	z-index:10;
}
footer aside span a {
	color: black;
	text-decoration: none;
	text-align:center;
	padding: 20px 20px;	
	font-size: 1rem;
}
footer aside span:hover{
	cursor:pointer;
	background-color:blue;
	border: 3px solid red;
	width:45px;
	height:30px;
}


/*voor smartphone*/
@media (max-width: 580px) {
	nav ul {
		flex-direction: column;
		row-gap:1px;
	}
	#nesta article img{
		max-width:180px;
		max-height:120px;
	}
	footer section{
		margin-left:70px;
		text-align:left;
		padding: 30px 0;
		font-size: 0.8rem;
		color:black;
	}
	footer aside span{
		background-color: rgba(255, 178, 211, 0.8);
		text-align: center;
		border: 2px solid blue;
		border-radius: 50%;
		margin-right:3px;
		transition: width 2s, height 2s;
	}
	footer aside span:hover {
		background-color:blue;
		border: 2px solid red;
		width:45px;
		height:30px;
	}
}
