/* modal dialog */

#modal-popup {
	inset: 0;
	position: fixed;
	box-sizing: border-box;
	width: 100vw;
	height: 100vh;
	border: none;
	z-index: 2;
}

#modal-popup,
#modal-popup picture,
#modal-popup figure,
#modal-popup figcaption,
#modal-popup p,
#modal-popup img {
	padding: 0;
	margin: 0;
}

#modal-popup > figure {
	inset: 0;
}

#modal-popup img {
	object-fit: contain;
	object-position: center;
	width: 100vw;
	height: 100vh;
}

#modal-popup > figure > figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin-left: auto;
	margin-right: auto;
	opacity: 0;
	background-color: rgba(255, 255, 255, 0.5);
	transition: opacity 500ms ease-in-out;
	padding: 1em;
	min-height: 3em;
}

#modal-popup > figure > figcaption:hover {
	opacity: 1;
}

#modal-popup > figure > figcaption > p {
	border-radius: 8px;
	padding: 0.5em;
}