/*** COPYRIGHT: NIKLAS R. 2025 ***/


html {
	width: 100%;
	padding: 0px;
	margin: 0px;
}

body {
	width: 100%;
	padding: 0px;
	margin: 0px;
	min-height: 100vh;
	background-color: #80c1ff;
}

#header, #content {
	width: min(1000px, 100vw - 40px);
	margin: 10px;
	margin-left: calc(50% - min(510px, 50vw - 10px) + 10px);
}

#header {
	background-color: #0084ff;
	box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
	text-align: center;
	margin-bottom: 40px;
	height: 200px;
}

#titlebox {
	font-size: 110px;
	font-family: "Special Elite";
	padding: 8px 2px 0px 2px;
}

#descriptionbox {
	font-size: 30px;
	margin-bottom: 5px;
}

#content {
	height: max(100vh - 350px, 600px);
}

.box {
	width: max(min(1000px, 100vw - 40px) / 2 - 26px, 300px);
	padding: 5px 5px 20px 5px;
	min-height: 200px;
	border-radius: 20px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
	background-color: white;
	box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
	border: 3px solid gray;
}

.boxhead {
	text-align: center;
	font-size: 30px;
	margin-bottom: 10px;
	text-shadow: 1px 1px 8px rgba(255,255,255,0.7);
}

.row {
	cursor: pointer;
	font-size: 24px;
	border-bottom: 2px solid rgba(0,0,0,0.1);
	padding: 10px 1px;
}

.row:hover {
	background-color: rgba(150, 150, 150, 0.5)
}

#toolbox {background-color: #8080ff; border-color: #4d4dff;}
#gamebox {background-color: #33cc33; border-color: #248f24;}
#feelingsbox {background-color: #ff9966; border-color: #ff661a;}

#bridge::before, #bridgefarmer::before {
	content: "";
	background-image: url("https://www.routama.fi/bridge/bridgemedia/icon.ico");
	background-size: 100% 100%;
	display: inline-block;
	height: 24px;
	width: 24px;
	margin-right: 6px;
}

#tunnesanat::before {
	content: "";
	background-image: url("https://www.routama.fi/tunnesanat/icon.ico");
	background-size: 100% 100%;
	display: inline-block;
	height: 24px;
	width: 24px;
	margin-right: 6px;
}

#jarjestaja::before {
	content: "";
	background-image: url("https://www.routama.fi/jarjestaja/icon.ico");
	background-size: 100% 100%;
	display: inline-block;
	height: 24px;
	width: 24px;
	margin-right: 6px;
}

.pelilaskuri::before  {
	content: "";
	background-image: url("https://www.routama.fi/pelilaskuri/logo.ico");
	background-size: 100% 100%;
	display: inline-block;
	height: 24px;
	width: 24px;
	margin-right: 6px;
}

@media screen and (max-width: 691px) {
	#titlebox {
		font-size: 15vw;
	}
	#header {
		height: auto;
		min-width: 200px;
	}
	.box {
		width: calc(100vw - 50px);
		min-height: 97px;
		min-width: 200px;
	}
}