/* Limita o tamanho das imagens */
.distancia img {
    max-width: 90vw;
    height: auto;
}

.caixita {
	/* Cada caixa armazena um fato */
	margin: 30px 0 0 0;
	padding: 30px;
	border: 2px solid white;
	border-radius: 25px;
	box-shadow: 2px 3px 5px grey;
}
@media only screen and (max-width: 760px){ 
	.caixita {
	padding: 0px;
	border-bottom: 4px solid #E0E0E0;
	border-top: 4px solid #E0E0E0;
	border-radius: 25px;
	box-shadow: 0px 0px 0px;
	}
}

#calendario {
	border: 0;
	width: 800px;
	height: 600px;
}
/* Desktops */
@media screen and (min-width: 1400px) {
    #calendario {
		width: 1000px;
		height: 700px;
	}
}
/* Computadores pequenos e celulares */
@media screen and (max-width: 900px) {
    #calendario {
		width: 90vw;
		height: 600px;
	}
}