#map {
	display: flex;
	width: 100%;
	flex-direction: column;
}
#map h1 {
	margin-top: 70px;
}

.image {
	padding: 20px;
}
.image img {
	max-width: 100%;
}

#map-container {
    position: relative;
	width: 100%;
	overflow: hidden;
}
#map-image {
  width: 100%;
  height: auto;
}
.marker {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    cursor: pointer;
}
#coordinates {
	position: absolute;
	bottom: 10px;
	right: 10px;
	font-size: 14px;
	font-weight: bold;
}
#info {
	position: fixed;
	top: 0;
	left: 0;
	margin: 10px;
	max-width: 400px;
	max-height: 500px;
	background: rgb(255, 255, 255, 1);
	border-radius: 10px;
	border: 2px solid #020825;
	padding: 20px;
	font-size: 18px;
	display: none;
	text-align: justify;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	box-shadow: 10px 10px 20px 5px;
}
#map-hist {
	max-height: 200px;
	overflow: auto;
}
#info h1 {
	margin: 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#info span {
	position: absolute;
	top: 10px;
	right: 10px;
	font-weight: bold;
	font-size: 22px;
	cursor: pointer;
}
@media (max-width: 640px) {
	#info {
		margin-top: 15%;
	}
	.marker {
		width: 6px;
    	height: 6px;
	}
}