@font-face {

Font-family: F1_Regular;

src: url('/f3x3/Formula1-Regular.otf');

}

.boton {
	font-family: F1_Regular;
	display: inline-block;
	padding: 15px 30px;
	font-size: 26px;
	font-weight: bold;
	color: yellow;
	text-align: center;
	text-decoration: none;
	border-radius: 50px;
	border: none;
	position: relative;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	overflow: hidden;
	width: 200px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom:100px;
	margin-top:30px;
	margin-left:50px;
}

.boton::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50px;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: blur(4px); /* Difuminado */
}

.boton1::before {
	background-image: url('/imagenes/tablero_222.jpg'); /* Imagen específica para el primer botón */
}

.boton2::before {
	background-image: url('/imagenes/bingo2.jpg'); /* Imagen específica para el segundo botón */
}

.boton span {
	position: relative;
	z-index: 1;
}

.boton:hover {
	transform: scale(1.05);
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

  
  