:root{
	--bg-color: rgba(255,255,255,0.6);
}

body{
	background-color: #EEEEFF;
	background-image: url("../resources/Linna.png");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
}

h1, h2, h3 {
	text-align: center;
	color: black;
}

p{
	text-align: center;
}

#logo{
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	max-height: 100%;
}

#header{
	left: 5%;
	max-width: 50%;
}

#infoTop{
	max-width: 405px;
	display: none;
}

#container{
	width: 80%;
	margin-top: 5%;
	margin-left: auto;
	margin-right: auto;
	
	padding: 1%;
	
	background-color: var(--bg-color, white);
	border-radius: 2em;
}

@media only screen and (min-width: 1000px){
	#header{
		position: fixed;
		width: 35%;
	}
	
	#container{
		width: 50%;
		margin-left: 40%;
	}
	
	#infoTop{
		display: block;
	}
	
	#infoBottom{
		display: none;
	}
}


.project{
	width: 90%;
	margin-top: 5px;
	margin-left: auto;
	margin-right: auto;
	padding: 5px;
	background-color: var(--bg-color, blue);
}

.selectable{
	cursor: pointer;
}