 /* CSS for the basic modal window used */
 
* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/* html, body {
  height: 100%;
}
 */

/* Appended modal- to these three classes to avoid conflict*/ 
/*=================*/
.modal-container {
  display: table;
  width: 100%;
  height: 100%;
}

.modal-interior {
  display: table-cell;
  vertical-align: middle;
  text-align: center;

}

.modal-btn {
  background-color: #fff;
  padding: 1em 3em;
  border-radius: 3px;
  color: #2980b9;
  text-decoration: none;
}

/*=================*/

/* body {
  font:14px/1.5 sans-serif;
  padding: 2rem;
  background-color: #2980b9;
} */



.modal-window {
	position:fixed;
	background-color: rgba(255,255,255,0.5);
	top:20px;
	right:0;
	bottom:0;
	left:0;
	z-index:999;
	opacity:0;
	pointer-events:none;
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	transition:all 0.3s;
}
.modal-window:target {
	opacity:1;
	pointer-events:auto;
}
.modal-window>div {
	width:400px;
	height:500px;
	position:relative;
	margin:10% auto;
	padding:2rem;
	background:#b5ddf2;
	color:#444;
	border:3px solid black;
}
.modal-window header {
	font-weight:bold;
}

.modal-close {
	color:#aaa;
	line-height:50px;
	font-size:110%;
	position:absolute;
	right:0;
	text-align:center;
	top:0;
	width:70px;
	text-decoration:none;
}
.modal-close:hover {
	color:#000;
}
.modal-window h1 {
  font-size: 150%;
  margin: 0 0 15px;
}