.skills {
	max-width: 98%;
	background-color: #124f88;
  /* padding: 10%; */
  border-radius: 16px;
  padding: 6px;
}
/* .arriba{
  margin-top: 25px;
} */
.skills-title {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.skills-skill {
	font-size: 20px;
	font-weight: 501;
  border-radius: 6px;
	box-shadow: 1 4px 10px rgba(22, 1, 1, 0.25);
	border-radius: 10px;
	padding: 0.5em 0.7em;
	margin: 10px;
	background-color: rgb(252, 252, 252);
  color: darkblue;
}

.skills-skill:hover {
	background-color: darkblue;
  color: rgb(252, 252, 252);
}

.skills-list {
  list-style: none;
  padding: 0;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}



@media(min-width: 768px) {
  .skills-title {
    font-size: 50px;
  }
  
  .skills-skill {
    font-size: 30px;
    margin: 20px;
    /* color: cadetblue; */
  }
}