


.contenedor {
	width: 120px;
	margin: auto;
	padding: 100px 0;
	display: flex;
	flex-direction: column;
	align-items: left;
	justify-content: center;
}

h1 {
	font-size: 20px;
	font-weight: 400;
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: #141414;
	border: 5px solid #141414;
	padding: 5px 5px;
	display: inline-block;
}
p {
	font-family: 'Roboto', sans-serif;
	color: #141414;
	font-size: 10px;
	align-items: center;
	justify-content: center;
}

h3 {
	color: #141414;
	font-family: 'Roboto', sans-serif;
}

h4{
	font-size: 12px;

}
.contenedor-botones {
	width: 80%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px;
}
.contenedor-botones1 {
	width: 50%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 5px;

}
.contenedor-botones2 {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 2fr);
	gap: 15px;
}
.boton {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	background: #141414;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	font-weight: 500;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	transition: .3s ease all;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.boton span {
	position: relative;
	z-index: 2;
	transition: .3s ease all;
}

