@charset "utf-8";
/* CSS Document */
body
	{
		margin: 0px;
		padding: 0px;		
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 16px;
	}

.texto{
	display: flex;
	flex-direction:column;
	align-items:space-evenly;
	padding: 25px;
	border: 1px #000;
}
.texto  ul {
  list-style: none;
  padding: 0;
}
.texto  ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.texto  ul li:first-child {
  margin-top: 35px;
}
.texto  ul i {
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 1em;
  padding: 5px;
  margin-right: 15px;
  color: #106eea;
 
}
.texto  ul li {
	font-family: 'Roboto Condensed', sans-serif;
  font-size: 1em;
}

.texto ul p {
	font-family: 'Roboto Condensed', sans-serif;
  font-size: 1em;
}
.texto p:last-child {
  margin-bottom: 0;
}

.caja-boton{
	display: flex;
	flex-direction:row;
	align-items:space-evenly;
	padding:2px 10px;
}
.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  margin: 4px 2px;
  cursor: pointer;
}
.button:hover {
	 color: white;
}
