/* 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;
}

.homepage {  /*begin home pagina layout*/
	display: flex;
	height: 100vh;
	padding: 50px;
	margin-bottom: 200px;
}

.introtext, .introimg {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

h1{
	font-weight: bold;
}

.text-container {
	margin-left: 100px;
	margin-right: 50px;
	font-size: 30px;
	max-width: 50%;
	min-height: 500px;
	padding: 20px;
	background-color: #65858C;
	box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
	text-align: center;
	border-radius: 15px;
}
.introimg {
	margin-top: 150px;
	max-width: 50%;
	height: fit-content;
	img{
		width: auto !important; /*override the width below*/
		width: 100%;
		max-width: 678px;
		float: left;
	  }
}


.footer{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #699EBF;
	color: #ffffff;
	padding: 20px;
	margin-top: 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;
}