@keyframes appear {
	0% {
		opacity: 0%;
	}

	100% {
		opacity: 100%;
	}
}

@keyframes grow {
	from {width: 20%; height: 20%}
	to {width: 100%; height: 100%}
}

.image-container {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed #ccc;
    background-color: #fff;
}
img {
    max-width: 100%;
    max-height: 100%;
	animation: grow 15s;
}

#memorial > * {
	text-align: center;
	opacity: 0;
}

#memorial * {
	user-select: none;
}