@charset "utf-8";
/* CSS Document */
body
	{
		margin: 0px;
		padding: 0px;
		background: #66b10f;
		font-family: 'Roboto Condensed', sans-serif;
	}

.flyer{
	display: flex;
	align-items: center;
	padding: 5px;
}

.caja-boton{
	display: flex;
	flex-direction:row;
	align-items: center;
	padding:2px 250px;
}

.btn-enlace{
  color: #fff !important;
  font-size: 1em;
  font-weight: 500;
  padding: 0.5em 1.2em;
  background-color: #008037; 
  border: 2px solid;
  border-color: #008037;
  position: relative;
  text-decoration: none;
}


.btn-enlace:before {
  content:"";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 1s ease;
}
.btn-enlace:hover:before {
width: 100%;
}
