.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 99; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	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.8); /* Black w/ opacity */
}

/* Add Animation */
@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0;
	}
	to {
		top: 0;
		opacity: 1;
	}
}

/* Modal Content */
.modal-content {
	position: relative;
	background-color: rgba(9, 9, 10, 0.965);
	margin: auto;
	padding: 1rem;
	border: 1px solid rgb(27, 27, 27);
	width: 75%;
	color: white;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	animation-name: animatetop;
	animation-duration: 0.4s;
}

@media screen and (max-width: 650px) {
	.modal-content {
		width: 90%;
	}
}

.modal-content h1 {
	color: rgb(255, 255, 255);
	font-weight: bold;
	padding: 1em;
}
.modal-content p {
	color: rgb(214, 214, 214);
}

/* The Close Button */
.close {
	color: rgb(94, 89, 99);
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.imgModal {
	object-fit: cover;
	height: 200px;
	width: 200px;
}
h3 {
	color: white;
}
