html {

}
body {
	font-family: 'Flamenco', serif !important;
}
.greek {
	font-family: 'GFS Neohellenic', serif;
}

#gamearea {
	width: 800px;
	height: 600px;
	border-left: 2px solid black;
	border-right: 2px solid black;
	overflow: hidden;
	position: relative;
}
#gamearea > div {
	position: absolute;
}
#game-centre {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#map {
	width: 100%;
	height: 100%;
	background: #eef url(../img/mapofgreece.jpg);
}
#ui, #not-ui {
	position: absolute;
	width: 100%;
	height: 100%;
}

path, line {
    fill: none;
    stroke: black;
    stroke-linecap: round;
}
.field {
    stroke: none;
    fill-opacity: 1.0;
}
.slope { stroke-width: 1; }
.river { stroke-width: 2; }
.coast { stroke-width: 2; }
.border {
    stroke-width: 5;
    stroke-dasharray: 4,4;
    stroke-linecap: butt;
}
text {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    color: black;
    stroke: white;
    stroke-width: 5;
    stroke-linejoin: round;
    paint-order: stroke;
}
text.region {
    stroke-width:10;
    font-variant: small-caps;
}
svg {
    background-color: #eef4ff;
}
#city {
	position: relative;
	border: 2px solid green;
	width: 800px;
	height: 600px;
	overflow: hidden;
}
button {
	z-index: 10;
}
