header {
	position: fixed;
	width: 100%;
	background-color: rgba(0,0,255,0.7);
	top: 0px;
	left: 0px;
	cursor: default;
	user-select: none;
	z-index: 100;
}

hleft {
	font-size: 40px;
	padding-left: 5px;
	padding-right: 100px;
	color: WhiteSmoke;
	text-shadow: 4px 4px 3px gray;
	white-space: nowrap;
}

ver {
	font-size: 12px;
	color: LightGray;
}

hright {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translate(0%, -50%);
}

main {
	position: relative;
	padding-top: 50px;
}

.nobreak {
	display: inline-grid;
}

#doughnutsDiv {
	position: relative;
}

.doughnutdiv {
	position: relative;
	display: inline-grid;
	margin: 15px;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 5px 5px 5px;
	border: solid 1px black;
	text-align: center;
	width: 200px;
}

.doughnuttitle {
	font-size: 25px;
	white-space: nowrap;
	overflow: auto;
}

.doughnutClose {
	position: absolute;
	top: 5px;
	right: 5px;
	opacity: 0;
	transition: opacity 0.3s;
}

.doughnutClose:hover {
	opacity: 1;
}

@media only screen and (max-width: 600px) {
	hleft {
		font-size: 25px;
	}
	
	ver {
		font-size: 8px;
	}
	
	main {
		padding-top: 25px;
	}
	
	.nobreak {
		display: grid;
	}
}
