
html,body{
	background: #202020;
	color:#ccc;
	font-family: roboto, sans-serif;
	text-align: center;
	padding: 30px auto;
	margin: 0;
}

h1{
	color:white;
	font-size:5vh;
	max-width: 700px;
	margin: 50px auto;
	margin-bottom: 0;
}


h2{
	color:#eee;
	font-weight: 300;
	font-size:24px;
}

p{
	color:#999;
	font-size: 16px;
}

a{
	background: #fff;
	color:#333;
	display: inline-block;
	border-radius: 40px;
	padding: 10px 20px;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
}

header{
	margin: 30px;
}

img{
	width: 100%;
	max-width: 500px;
}


.logo{
	width: 100%;
	max-width: 180px;
}

.logo.small{
	width: 100%;
	max-width: 120px;
	vertical-align: middle;
}

.banner{
	margin: auto;
	/* border-top: 1px solid #ccc; */
	/* background: linear-gradient(-40deg, #ffeb52 0, #5bd291 20%, #0078d4 70%, #6d24ff 100%);*/
	background: linear-gradient(0deg, #202020 0%, #292929 50%, #202020 100%) ; 
	/* background: url("assets/bg.png") no-repeat bottom ;
  background-size: contain; Adjusts the image size to cover the element */
}

.banner img{
	width: 100%;
	max-width: 1200px;
	/* border-radius: 10px;
	border:1px solid #666;
	box-shadow: 10px 5px 50px black; */
}


section>p{
	max-width: 700px;
	margin: 50px auto;
	font-size: 18px;
	line-height: 1.6;
}

.articles-container {
  display: flex; /* Makes the container a flex container */
  flex-wrap: wrap; /* Allows articles to wrap to the next line if space is limited */
  justify-content: space-around; /* Distributes space around items */
  max-width: 1100px;
  margin: 50px auto auto;	
}

article {
  flex: 1 1 300px; /* Allows articles to grow, shrink, and sets a preferred width */
  margin: 0 10px;
  padding: 0 15px;
  box-sizing: border-box; /* Includes padding and border in the element's total width and height */
  text-align: left;

  border:1px solid #333;
  border-radius: 4px;
  margin: 10px;
  background: linear-gradient(-40deg,  #262626 0, #202020 100%);
  box-shadow: 0 0 10px #141414;
}


article i{
	font-size: 48px;
	color: #666;
}

article figure{
	width: 25%;
	text-align: left !important;
}

article figure img{
	width: 100%;
	max-height: 140px;
}

.horizontal{
	display: flex;
	align-items: center;
}


footer{
	border-top: 1px solid #333;
	margin: 50px auto auto;
	padding: 30px;

}

.amarillo{color:#ffeb52}
.naranja{color:#ff6600}
.rojo{color:#d33048}
.violeta{color:#6d24ff}
.azul{color:#0078d4}
.verde{color:#5acf8f}

.badge{
	display: inline-block;
	background: linear-gradient(135deg,#ff8a00 0%,#ff3b3b 100%);
	color: white;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 999px;
	vertical-align: middle;
	margin-left: 10px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.4);
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.badge:before{
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	background: rgba(255,255,255,0.9);
	border-radius: 50%;
	margin-right: 6px;
	transform: translateY(-1px);
	opacity: 0.9;
}

i{
	color:#666;
}
