
#main {
	background-color: var(--fondo);
	display: flex;
	justify-content: space-evenly;
	align-content: start;
	align-items: start;
	text-align: center;
}

#left,
#right,
#features {
	max-width: 520px;
   margin: 0 auto;
   margin-bottom: 1rem;
	text-align: left;
}

#right,
#features {
	text-align: center;
	vertical-align: middle;
}

#features h4{
	font-size: 1rem;
}

.texto {
   font-size: 1.1rem;
   line-height: 1.5;
   max-width: 450px;
   margin: 0 auto;
}

.left-btn {
	margin-top: 1em;
   padding: 10px 30px;
   background: none;
   font-size: 1.2rem;
   letter-spacing: 1px;
   border-radius: 7px;
   border-color: var(--enlaces);
   color: var(--enlaces);
	cursor: pointer;
}


.left-btn:hover {
   filter: brightness(120%);
}

.left-btn a {
	color: var(--enlaces);
	text-decoration: none;
}

.left-btn a:hover {
	color: var(--enlaces);
	border: none;
}

.profile-img {
  width: 95%;
  max-width: 400px;
	border-radius: 5%;
  margin-top: 3em;
	/*border-bottom: 1rem solid rgb(146,208,80);*/
}

.grilla {
	background-color: var(--fondo);
	display: grid;
	grid-template-columns: repeat(2, minmax(16rem, 1fr));
	align-content: flex-start;
	justify-content: center;
	align-items: stretch;
	row-gap: 1px;
	column-gap: 5em;
}

.panel {
	min-height: 140px;
	padding: 1px 5px; 
	vertical-align: text-top;
	text-align: left;
	font-size: 0.9rem;
	
 }

.panel h3 {
	display: flex;
	align-items:center;	
}

@media (max-width: 950px) {
	#main {
		padding: 2px;
		flex-direction: column;
	}
	#left,
	#right, 
	#features {
		/*background-color: cornflowerblue;*/
		text-align: center;
		width: 100%;
		min-width: 100%;
	}
	.grilla {
		grid-template-columns: repeat(1, minmax(15rem, 1fr));
		gap: 0;
	}

	.panel {
		text-align: center;
		font-size: 1.1rem;
		padding: 3px 15px;
	}
	.panel h3 {
		display: block;
		padding-bottom: 0;
		text-align: center;
		justify-items: center;
	}

	.profile-img {
		max-width: 280px;
	}
}
