* {
  font-family: inherit;
}
body{
    margin: 0 auto;

}

h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 2rem;
    color: #00410a;
    text-align: justify;

}
h2 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    color: #00410a;
    text-align: justify;
}


p {
    font-family: inherit;
    font-size: 1rem;
    color: #00410a;
    text-align: justify;

  }

  table {
    table-layout: fixed;
    border-collapse: collapse;

  }
th{
  text-align: center;
    font-weight:bold;
}

td {
    text-align: center;
}
  
  th, td {
    padding: 10px;
  }
  tr {
    padding: 10px;
  }

  .menu {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    border-color: none;
    width: 2000px;
  }

  .pagina {
    font-family: inherit;
    font-size: 1rem;
    position: -webkit-sticky;
      position: sticky;
      top: 0;
      background-color: white;
      max-width: 600px;
    }

  .titulo {
    font-family: inherit;
    font-size: 1.1rem;
    color: #00410a;
    text-align: justify;
}

.titulo.a:link {
  color: #00410a;    
  text-decoration: none;
  }
  
  /* visited link */
  a {
    color: #00410a;
    text-decoration: none;
  }
  
  /* mouse over link */
  a:hover {
    color:white;
	background-color:#00410a;
  }
  .tablaInicio {
    background-color:#00410a;
    color:white;
    text-align: justify;
}
.contenedor {
	position: relative;
	width: 100%;
	margin: 0 auto;
	transition: all 0.3s ease-out;
	margin-top: 50px;
	margin-bottom: 20px;
	display: block;
}

.contenedor-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contenedor-cards .contenedor-card-item {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	width: 25%;
	margin: 1%;
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-radius: 5px;
	cursor: help;
}

.contenedor-cards .contenedor-card-item:hover {
	box-shadow: 0 15px 30px rgba(0,0,0,0.3);
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
}

.contenedor-card-item-wrapper {
	overflow: hidden;
	position: relative !important;
	background: #3E2723;
	border-radius: 5px;
}

.contenedor-card-item img {
	max-width: 100%;
	position: relative;
	top: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	border-radius: 5px;
}

.contenedor-card-item .contenedor-info {
	position: absolute;
	width: 100%;
	height: 70px;
	bottom: -70px;
	-webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.contenedor-card-item .contenedor-info .fondo {
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.73) 53%, rgba(0,0,0,0.88) 100%);
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.73) 53%,rgba(0,0,0,0.88) 100%);
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.73) 53%,rgba(0,0,0,0.88) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#e0000000',GradientType=0 );
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.contenedor-card-item .contenedor-info .info {
	color: #fff;
	position: relative;
	z-index: 500;
	padding: 20px 15px;
}

.contenedor-card-item .contenedor-info .info .titulillo {
  margin: 0;
  font-size: 20px;
  color: white;
}

.contenedor-card-item .contenedor-info .info .categoria {
	display: block;
	font-size: 10px;
}

.contenedor-card-item:hover .contenedor-info {
	bottom: 0;
}

.contenedor-card-item:hover img {
	top: -30px;
	-webkit-transform: rotate(-5deg) scale(2);
	-ms-transform: rotate(-5deg) scale(2);
	-o-transform: rotate(-5deg) scale(2);
	transform: rotate(-5deg) scale(2);
}

@media screen and (max-width: 900px) {
	.contenedor-card-item:hover img {
    top: -30px;
    -webkit-transform: rotate(-5deg) scale(1.3);
    -ms-transform: rotate(-5deg) scale(1.3);
    -o-transform: rotate(-5deg) scale(1.3);
    transform: rotate(-5deg) scale(1.3);
  }

	.contenedor-card-item .contenedor-info {
		bottom: 0;
	}
}

@media screen and (max-width: 767px) {
	.contenedor {
		width: 95%;
	}

	.contenedor-cards .contenedor-card-item {
		width: 48%;
		margin: 1%;
	}
}

@media screen and (max-width: 550px) {
  .contenedor-cards .contenedor-card-item {
    width: 60%;
    margin: 10px auto;
  }
}

@media screen and (max-width: 480px) {
	.contenedor {
		width: 90%;
	}
  
  .contenedor-cards .contenedor-card-item {
    width: 90%;
  }
}

@media screen and (max-width: 400px) {
	.contenedor {
		width: 100%;
	}
}
.btn1{
    border: none;
    background-color: #00410a;
    padding:14px 28px;
	color:white;
    font-size:1rem;
    cursor: pointer;
    display:inline-block;
    border-radius: 4%;

  }
  .cta {
    color:white;
    text-decoration: none;
  }
  .cta a {
    color: white;
    text-decoration: none;
  }
  /* visited link */
  .cta a:visited {
    color: white;
    text-decoration: none;
  }
  
  /* mouse over link */
  .cta a:hover {
	color: #00410a;
	background-color:white;
    text-decoration: none;
  }


.button1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; 
}