/* Inclusão de fontes */
@import url('https://fonts.googleapis.com/css?family=Sriracha&display=swap');
@import url('https://fonts.googleapis.com/css?family=Sofia&display=swap');


/* Estilos da parte de HISTÓRIAS */
.fonte-cursiva {
	color:black;
	font-size:16px;
	font-family: Sriracha, sans-serif;
}
@media screen and (min-width: 421px) and (max-width: 900px) {
	.fonte-cursiva {
		font-size:15px;
	}
}
@media only screen and (max-width: 420px) {
	.fonte-cursiva {
		font-size:13px;
	}
}

.botao {
	background-color: #3eb7ab;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
/* Estilos da parte de POSTS */
#limita-imagem-post img {
	max-width:80vw;
	height:auto;
	padding: 30px 0 30px 0;
}

/* Estilos da parte de INSPIRE-SE */
.wrap-blocos {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-around;
}

.bloco-inspirese {
	width: 400px;
	height: 300px;
	font-family: 'Sofia', cursive;
	color:#FFFFFF;
	background-color:#8459A1;
	margin:15px;
	padding:0 20px 0 20px;
	font-size:17px;
}
@media only screen and (max-width: 420px) {
	.bloco-inspirese { 
		width: 300px;
		height: 225px;
		font-size:15px;
	}
}
@media only screen and (min-width: 1400px) {
	.bloco-inspirese {
		width: 500px;
		height: 375px;
		font-size:19px;
		padding:0 40px 0 40px;
	}
}

/* Estilos da parte de VÍDEOS */
.caixa-video {
	margin: 15px 0;
	padding: 20px 10px 0 10px;
	border-radius: 20px;
	box-shadow: 2px 3px 5px grey;
	width: 450px;
}
@media only screen and (max-width: 600px) {
	.caixa-video {
		width: 100%;
		padding: 0;
		border-radius: 0;
		box-shadow: none;
	}
}

.formata-videos {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-evenly;
}
@media only screen and (max-width: 768px) {
	.formata-videos {
		flex-direction: column;
		justify-content:center;
		align-items: center;
	}
}

.formata-videos iframe {
	width:333px;
	height:200px;
}
@media only screen and (max-width: 600px) {
	.formata-videos iframe {
		width:60vw;
		height: calc(60vh * (1.66));
		height:auto;
	}
}

/* Estilos da parte de ARQUIVOS */
#lista {
	padding: 30px 0 20px 0;
}

/* Estilos da parte de LINKS INTERESSANTES */
.bloco-link {
	border-radius: 20px;
	background-color: #FFFFF0;
	box-shadow: 2px 3px 5px grey;
	max-width: 100%;
	padding: 20px;
	margin: 20px 0;
}

/* Estilos da parte de O QUE ESTÁ ROLANDO */
.evento {
	margin: 15px 0;
	border-radius: 20px;
	box-shadow: 2px 3px 5px grey;
	width: 100%;
}

.imagem_evento {
	width:180px;
	height: 180px;
}
@media only screen and (min-width: 801px){
	.imagem_evento {
		margin: 0 0 0 20px;
	}
}

.textos_rolando {
	max-width: 100%;
	padding: 20px;
}
@media only screen and (min-width: 801px){
	.textos_rolando {
		width: 80%;
	}
}