/* modal background */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0, 0, 0); /* Fallback color */
	background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* modal content */
.modal-content {
	position: relative;
	background-color: #fefefe;
	margin: 10% auto;
	padding: 1.5rem;
	border: 1px solid #888;
	width: 80%;
  list-style-position: inside;
}

/* The Close Button */
.close {
	color: #aaaaaa;
	float: right;
	font-size: 2rem;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.modal-item {
	p {
		text-align: justify;
	}
	img {
		max-width: 1024px;
	}
}

@media screen and (max-width: 800px) {
	.modal-item {
		img {
			max-width: 350px;
		}
	}
}
