/* CSS reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
    margin:0;
    padding:0;
}
html,body {
    margin:0;
    padding:0;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
fieldset,img { 
    border:0;
}
input{
    border:1px solid #b0b0b0;
    padding:3px 5px 4px;
    color:#979797;
    width:190px;
}
address,caption,cite,code,dfn,th,var {
    font-style:normal;
    font-weight:normal;
}
ol,ul {
    list-style:none;
}
caption,th {
    text-align:left;
}
h1,h2,h3,h4,h5,h6 {
    font-size:100%;
    font-weight:normal;
}
q:before,q:after {
    content:'';
}
abbr,acronym { border:0;
}

.top-left-icon {  /* Logo in de webpage*/
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1000;
}

.top-left-icon img{
	width: 80px;
	height: auto;
}

.top-left-icon p{
	text-align: left;
	background-color: #699EBF;
	color: #ffffff;
	padding: 10px;
	font-weight: bolder;
	border-radius: 15px;
}

.navbar {     /* navigatie voor paginas */
	border:none;
	border:0px;
	margin:auto;
	padding:0px;
	font-family: 'Courier New', Courier, monospace;
	font-size:16px;
	font-weight:bolder;
	top: 173.235px;
    width: 400px;
    height: 56px;
}

.navbar ul{
	background:#65858C;
	height:50px;
	list-style:none;
	margin:0;
	padding:0;
	border-radius: 15px;
	box-shadow: inset 0px 16px 0px 0px rgba(255, 255, 255, .1);

}

.navbar li{
	float:left;
	padding:0px 0px 0px 15px; 	
}
/*Color of the text in the button in the nav*/
.navbar li a{
	color:#ffffff;
	display:block;
	font-weight:normal;
	line-height:50px;
	margin:0px;
	padding:0px 25px;
	text-align:center;
	text-decoration:none;
    border-radius: 15px;
}

.navbar li a:hover{
	background:#ffffff;
	color:#0D0D0D;
	text-decoration:none;
	box-shadow: inset 0px 0px 7px 2px rgba(0, 0, 0, .3);
}

body {
	background-color: #C4E1F2;
	margin: 0;
	font-family: 'Courier New', Courier, monospace;
	padding: 0;
	box-sizing: border-box;
}

.button-container {
    text-align: left;
    margin: 20px;
    margin-top: 150px;
    margin-bottom: 50px;
}

.button-container a{
    background-color: #65858C;
    color: #ffffff;
    border: none;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 15px;
    font-weight: bold;
}

.button-container a:hover{
    background-color: #ffffff;
    color: #0D0D0D;
}

.grid-container {  /* begin grid */
    margin-top: 100px;
    margin-right: 50px;
    margin-left: 50px;
    margin-bottom: 150px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: minmax(50px, auto);
    color: #ffffff; 
    font-weight: bold;
    text-align: center;
    font-size: 40px;
    grid-template-areas: 
    "top photo"
    "content photo"
    "bottom photo"
}

.grid-item-1{
    grid-area: top;
    background-color: #C4E1F2;
}
.grid-item-2{
    grid-area: content;
    background-color: #699EBF;
}
.grid-item-3{
    grid-area: bottom;
    background-color: #C4E1F2;
}
.grid-item-4{
    grid-area: photo;
    background-color: #C4E1F2;
    img{
		width: auto !important; /*override the width below*/
		width: 100%;
		max-width: 678px;
		float: left;
        max-height: 500px;
	}
}

.footer{  /* begin footer */
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #699EBF;
	color: #ffffff;
	padding: 20px;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
}

.footer-item{
	flex: 1;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
}

.footer-item a{
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
	font-size: 40px;
}

.footer-item a:hover {
	color: red;
	transition: 0.8s ease-out;
}

.linkicon .icon{
	width: 1em;
	height: auto;
	margin-right: 0.3em;
	vertical-align: middle;
}