@charset "utf-8";
/* CSS Document */

body {
	font-size: 16px;
	margin: 0;
	background-image: url(images/pexels-photo-325521.jpeg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0px -200px;
	height: 100vh;
	overflow: hidden;
}

main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas:
		"header header"
		"linkit yhteystiedot"
		"footer footer";
	position: relative;
	top: 120px;
}

header {
	position: fixed;
	overflow: hidden;
	padding-bottom: 0px;
	margin: 0px;
	width: 100%;
	grid-area: header;
	backdrop-filter: blur(8px);
	box-shadow: 0 0 10Px 10px rgba(0, 0, 0, 0.5);
}

#linkit {
	text-align: center;
	/* background-color: rgba(0, 0, 0, 0.50); */
	grid-area: linkit;
}

.linkit:hover {
	color: #DDDDDD;
	text-shadow: 0px 2px 4px #000000;
}

#yhteystiedot {
	text-align: center;
	/* background-color: rgba(22,19,122,0.50); */
	grid-area: yhteystiedot;
}

h1 {
	font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
	text-align: left;
	color: #ffffff;
	margin: 1.5% 0% 1.5% 12.5%;
	font-size: 2vw;
	text-shadow: 2px 2px 4px #000000;
}

h2 {
	font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
	color: white;
	margin: 4% auto;
	font-size: 2.5vw;
	text-shadow: 2px 2px 4px #000000;
}

a {
	font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
	text-decoration: none;
	color: white;
	font-size: 1.3vw;
}

#kela {
	background-color: #FDB813;
}

#omakanta {
	background-color: #0066A1;
}

#omavero {
	background-color: #006600;
}

#te-palvelut {
	background-color: #B6BE00;
}

#suomifi {
	background-color: #003479;
}

#poliisi {
	background-color: #06377B;
}

#omayritys {
	background-color: #0257A6;
}

.yhteystiedot {
	background-color: rgba(0,0,0,0.50);
	border: solid 1px rgba(255,255,255,0.5);
	margin: 1.5% auto;
	width: 68%;
}

@media (max-width: 768px) {
	
	.linkit {
	margin: 1% auto;
	padding: 1.5%;
	width: 80%;
	}
	
	main {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas:
		"header"
		"linkit"
		"yhteystiedot"
		"footer";
	}
}

@media (min-width: 768px){
	
	.linkit {
	margin: 0.5% auto;
	padding: 1.25%;
	width: 68%;
	border: solid 2px rgba(0,0,0,0.1);
	}
	
	#linkit {
		margin-left: 12%;
	}
	
	#yhteystiedot {
		margin-right: 12%;
	}
}
