body {
	font: 1rem sans-serif;
	background-color: black;
}
h1 {
	color: white;
}
#graph {
	cursor: grab;
	background-color: white;
	border-radius: 10px;
}
#graph:active {
	cursor: grabbing;
}
.nodeText {
	text-align: center;
}
.linage {
	fill: none;
	stroke: #000;
}
.marriage {
	fill: none;
	stroke: black;
}
.marriageNode {
	background-color: black;
	border-radius: 50%;
}
.nthMarriage {
	fill: none;
	stroke: #2e2c2e;
	stroke-width: 1px;
	stroke-dasharray: 3,3;
}
.man {
	background-color: hsl(0, 0%, 83%);
	border: 1px solid black;
}
.man:hover {
	background-color: hsl(0, 0%, 63%);
}
.woman {
	background-color: hsl(120, 73%, 75%);
	border: 1px solid black;
}
.woman:hover {
	background-color: hsl(120, 73%, 55%);
}
.emphasis{
	font-style: italic;
}
svg {
	border-style: solid;
	border-width: 1px;
}
foreignObject {
	cursor: pointer;
	height: 60px;
}
foreignObject > div {
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;

}
div > p {
	font-size: .75rem;
	letter-spacing: -0.3px;
}
#head-info {
	color: white;
}
#head-info a {
	text-decoration-style: underline;
	color: white;
}
#head-info a:hover {
	color: lightgreen;
	text-decoration-style: dashed;
	text-decoration-color: lightgreen;
	text-decoration-thickness: 3px;
}
.halfrem {
	font-size: .5rem;
}
.info {
	cursor: default;
	width: 250px;
	height: auto;
	position: absolute;
	padding: 1rem;
	top: 170px;
	left: 30px;
	border: 1px solid black;
	border-radius: 10px;
	font-size: .9rem;
}
#close {
	position: absolute;
	color: black;
	top: -11px;
	right: -11px;
	width: 20px;
	height: 20px;
	background-color: white;
	border-radius: 10px;
	border: 1px solid black;
	cursor:pointer;
	font-size: 1.75rem;
	line-height: .6;
	text-align: center;
}