*{
	box-sizing: border-box;

}
*::-webkit-scrollbar{
	width: 10px;
	background: #7B9885;
}
*::-webkit-scrollbar-thumb{
	background: #496657;
	width: 5px;
	border-radius: 30px 30px 30px 30px;
}
body{
	margin: 0;
	padding: 0;
}
.container-principal{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-auto-rows: 20rem;
	grid-gap: 5px;
	padding-top: 20px;
}

.articulo{
	position: relative;
	transition: .7s;
	overflow: hidden;
}


.articulo img{
	width: 100%;
	height: 100%;
	transition: .5s;
	object-fit: cover;
}
.articulo img:hover{
	transform: scale(1.2) rotate(3deg);
}

.descripcion{
	width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;
	font-size: 16px;
	color: #fff;
	padding-left: 20px;
	background: rgba(0,0,0,.7);
	bottom: 0;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	transform: translateY(-100%);
	transition: .5s;
	padding-top: 30%;
}
.articulo:hover .descripcion{
	transform: translateY(0%);
	transition: .5s;
}
.footer a{
	text-decoration: none;
	color: #fff;
}
.footer{
	width: 100%;
	display: flex;	
	height: auto;
	background: #7B9885;
	}
.footer .dentro{	
	width: 100%;
	height: 100%;
	margin-top: 10px;	
	background: #496657;
	display: flex;
	flex-wrap: wrap;
	}
.footer .dentro .caja-footer-uno{
	width: 48.5%;
	height: 100%;
	text-align: left;
	padding-left: 20px;
	color: #fff;
	padding-top: 20px;
	text-decoration: none;
	line-height: 5px;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	}
.footer .dentro .caja-footer-dos{
	width: 48.5%;
	height: 100%;
	text-align: right;
	padding-right: 20px;
	color: #fff;
	padding-top: 20px;
	line-height: 5px;
	font-family: 'Open Sans', sans-serif;
	}
.caja-footer-dos a{
	text-decoration: none;
	color: #fff;transition: .5s;
	}
.caja-footer-dos a:hover{
	color: #333;
	}
.caja-footer-dos p{font-size: 11px;}
@media(max-width: 1023px){
	.container-principal{
		display: grid;
		grid-template-columns: 1fr;
		grid-auto-rows: 27rem;
		grid-gap: 5px;
		padding-top: 20px;
	}
}