html, body{
    width: 100%;
    height:100%;
	padding: 20px 1px 0;
    background-color: #E6E8E6;
}
*{
    margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* MAIN */
.contenedor{
	width: 100%;
    height: 85%;
	/* margin-top: 2%; */
	display: grid;
	grid-template-columns: 0.15fr 1fr ;
	
}
.titulo{
    font-family: 'Courier New', Courier, monospace;
    margin-right: 15%;
	text-align: center;
}

.content{
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 20px;
	width: 80%;
	margin: auto ;
	margin-top:5%;
}
img{
	margin-left: 35%;
}

.aside{
	height: 80%;
	/* 	background-color:rgba(117, 118, 117, 0.305); */
	margin-top: 50%;	
}
.perfil{
	width: 100%;
}
.perfilUno{
	width: 100px;
	height: 100px;
	border-radius: 50%;	
	margin-top: 1%;
	margin-left: 2%;
	background-position: center center;
	position: relative;
    background-size: cover;
}
.texto{
	display: flex;
	margin-left: 120px;
	font-family: 'Courier New', Courier, monospace;
}
.autores{
	text-align: center;
	font-family: 'Courier New', Courier, monospace;
}
.fecha{
	font-family: 'Courier New', Courier, monospace;
	margin-top: 16px;
	text-align: center;
}
#com{
	width: 100%;
	font-family: 'Courier New', Courier, monospace;
	margin-top: 8%;
	text-align: center;
}
/*Botones*/
.cont-botones{
	width: 100%;
	margin-top: 2%;
	text-align: center;
}
.cont-botones a{
	text-decoration: none;
	color: black;
	padding: 20px;
	background-color: rgba(117, 118, 117, 0.305);
	border-radius: 10px;
}
a:hover{
	background-color: #000000;
	transition: .8s;
	color: white;
}