/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* =======End of Reset======== */

/* =======LAYOUT======== */

body{
	font-family: 'Noto Serif', serif;
}


header nav {
	background: #2a54ad;
	padding: 1em;
	border-bottom: 1px solid white;
	}

header div {
	background: url("pictures/bast.jpg");
	height: 25em;
	background-size: cover;
}
.header {
	display: flex;
	justify-content: space-around;
	padding-left: 10em;
	padding-right: 10em;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-weight: 500;
}

nav{
	text-align: right;
}

nav li {
	display: inline-block;
	margin-right: 3em;
}
a{
	text-decoration: none;
	color: #fff;
}
section {
	margin-top: 10em;
	font-size: 1.0em;
	color: #fff;
}

section h1{
	font-size: 2.5em;
}

section p{
	margin-top: 1em;
	font-size: 1.3em;
}

div img{
	margin-top: 5em;
	border-radius: 50%;
}

main {
	background-color: #e9effc;
}

.profile {
	display: flex;
	flex-direction: row;
	padding-left: 10em;
	padding-right: 10em;
	justify-content: space-between;
}

.profile p {
	padding-top: 4em;
	padding-left: 3em;
	font-size: 1.2em;
	line-height: 1.5em;
}

.profile img {
	border-radius: 0%;
}

h2 {
	font-size: 1.6em;
	text-align: center;
	margin-top: 2em;
	font-weight: bold;
	margin-bottom: 2em;
}

h3 {
	font-size: 1.2em;
	font-weight: 700;
	text-align: center;
}

.card {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	width: 20em
  }
  .container {
	padding: 2px 16px;
  }
  .container img{
	border-radius: 0%;
  }
  .grid-container {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		padding-left: 10em;
		padding-right: 10em;
		justify-content: center;
		line-height: 1.3em;
	}
  footer {
	background: #2a54ad;
	padding: 2.5em;
	text-align: right;
	color: #fff;
	margin-top: .2em;
	font-size: .7em;
  }


