.mymodal {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
	left: 0;
	top: 0;
	z-index: 99999999999999;
	font-size: 1.2rem;
	line-height: 1.6rem;
	display: none;
}
.mymodal_outer {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.mymodal_inner {
	background-color: #fff;
	color: green;
	text-shadow: 1px 1px white;
	max-width: 660px;
	padding: 30px 40px;
	box-sizing: border-box;
	position: relative;
	border-radius: 8px;
	border: 3px solid green;
	box-shadow: 2px 2px 8px black;
	z-index: 1;
}
.mymodal_close {
	position: absolute;
	top: -18px;
	right: -18px;
	cursor: pointer;
	font-size: 40px;
	border-radius: 100%;
	padding: 2px;
	color: white;
	background-color: red;
	border: 2px solid white;
	box-shadow: 0 0 8px black;
	z-index: 10;
	transition: 0.5s ease;
}
.mymodal_close:hover {
	transform: scale(1.15);
}
.mymodal_pic1 {
	position: absolute;
	top: 0;
	right: 0;
	
	border-radius: 8px;
	z-index: -1;
}
.mymodal_pic2 {
	position: absolute;
	top: -233px;
	left: 250px;
	max-height: 240px;
	border-radius: 8px;
	z-index: -1;
}