* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #f2f2f2;
	font-family: 'Roboto', sans-serif;
	min-height: 100vh;
}

.contenedor {
	width: 140px;
	margin: auto;
	padding: 10px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.contenedor-botones {
	width: 140px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.boton {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 50px;
	background: #0656B3;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: .5s ease all;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}
.boton:hover {
	color: aqua;
}

.boton span {
	position: relative;
	z-index: 2;
	transition: .3s ease all;
}
.boton span:hover {
	color: rgb(233, 6, 138);
}
a {
  text-decoration: none; /* Quita el subrayado */
  color: #ffffff; /* Color azul para el enlace */
  cursor: pointer; /* Muestra la mano al pasar el ratón */
}