#modal-contain {
	position: fixed;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
}

#modal-display {
	width: 100%;
	max-width: 700px;
	background: #dddddd;
	padding: 30px;
	color: #000;
	box-shadow: 3px 3px 8px 1px rgba(0,0,0,0.3);
	height: auto;
	text-align: center;
	font-size: 20px;
}

#modal-display > h2,
 #modal-display > strong,
  #modal-display > a {
	color:#5c1732;
}

#modal-close {
	float: right;
	font:30px/38px 'AvenirLTStd Black';
	color: #5c1732;
	line-height: 1;
	font-weight: 900;
}

.modal-close {
	cursor: pointer;
}


