/* CSS Document */
.timelapse-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80vh;
	background-color: #333;
	overflow: hidden;
	border-radius: 8px;
	margin-top: 20px;
}
.timelapse-container img {
	max-width: 100vw;  /* Ajusta la imagen al ancho de la pantalla */
	max-height: 80vh; /* Ajusta la imagen al alto del contenedor */
	width: auto;
	height: auto;
}