
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url(menu.css);
@import url(banner.css);
@import url(blog.css);
@import url(info.css);
@import url(slider.css);
@import url(autores.css);

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;

}


body
{
	font-family: 'Roboto', sans-serif;
	
}

h1,h2,h3,h4,a
{
	font-family: 'Roboto', serif;

}


header {
	width: 100%;
	height: 80px;
	background: #900C3F;
	color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

main{
	margin-top: 80px;
}


.contenedor 
{
	width: 98%;
	margin: auto;

}

h1 
{
	float:left;
	font-size: 36px;
}

p  
{line-height: 2em;
	padding: 30px;}

header .contenedor
{
	display: table;
}		

section
{
	width: 100%;
	margin-top: 50px;
	margin-bottom: 25px;
}

#bienvenidos
{
	text-align: justify;
	padding: 30px;
	position: relative;
	margin-top: 100px;	
}

#bienvenidos h2{
	text-align: center;
	line-height: 2em;
	margin-top: 50px;
}

#bienvenidos img {
	float: left;
	padding: 20px;
}

footer .contenedor {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	
}

.copy
{
	font-size: 20px;
}

.sociales
{
	width: 100%;
	text-align: center;
	padding-bottom: 25px;
}

.sociales a
{
	font-size: 28px;
	color: #333;
	text-decoration: none;
}

@media (max-width: 500px){
	h1
	{
		font-size: 18px;
	}
}

@media (max-width: 420px){
	h1
	{
		font-size: 14px;
	}
}
@media (max-width: 800px){
	h1
	{
		font-size: 20px;
	}
}

@media (min-width: 768px){
	.sociales
	{
		width: auto;

	}
	footer .contenedor {
		justify-content: space-between;
	}
}

@media (min-width: 1024px){
	.contenedor
	{
		width: 100%;
	}
}

#showg,#hideg, #showo,#hideo, #showp,#hidep, #showv,#hidev {
	display:none;
}

div#contentg, div#contento, div#contentp, div#contentv {
	display:none;
  padding:10px;
  background-color:#f6f6f6;
  width:95%;
  cursor:pointer;
}

input#showg:checked ~ div#contentg {
	display:block;
}

input#hideg:checked ~ div#contentg {
	display:none;
}

input#showo:checked ~ div#contento {
	display:block;
}

input#hideo:checked ~ div#contento {
	display:none;
}

input#showp:checked ~ div#contentp {
	display:block;
}

input#hidep:checked ~ div#contentp {
	display:none;
}

input#showv:checked ~ div#contentv {
	display:block;
}

input#hidev:checked ~ div#contentv {
	display:none;
}