h2 { 
	padding-block: 3rem 0.5rem; 
	color: #16A085;
}
p { padding-block: 0.5rem; }

.box { padding-block: 1rem; }

.custom-list {
	list-style: none;
	padding-left: 0.5rem;
}
.custom-list li {
	position: relative;
	padding-left: 1rem;
	margin-top: 0.3rem;
}
.custom-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translatey(-50%);
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background-color: #16A085;
}
.custom-image {
	max-width: 400px;
	width: 100%;
	cursor: pointer;
	height: auto;
	display: block;
}
.modal-window {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	justify-content: center;
	align-items: center;
	z-index: 1000;
	backdrop-filter: blur(5px);
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.modal-window img {
	max-width: 90%;
	max-height: 90%;
}
.close-btn {
	position: absolute;
	display: block;
	aspect-ratio: 1;
	top: 2rem;
	right: 2rem;
	width: 3rem;
	height: 3rem;
	padding: 0;
	color: #fff;
	cursor: pointer;
	background: none;
	border: none;
	z-index: 1001;
	background-color: transparent;
	border-radius: 50rem;
	transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.close-btn svg {
	height: 100%;
	width: 100%;
}

.close-btn:hover {
	color: #444;
	background-color: #eee;
}