/*
Theme Name: Portafolio
Theme URI: http://urldeltema
Description: portafolio
Author: Nicolas-leal
Author URI: dirección web del autor
Version: 0.1
License: GNU General Public License (u otra)
Tags: etiquetas que ayuden a indexar el tema
*/
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation-duration: 3s;
  animation-name: slidein;

}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.skills-title{
  font-size: 40px;
}
.card {
  width: 300px;
  height: 300%;
  margin: 60px;
  box-shadow: 0 0px 10px rgb(0, 0, 0);
  border: 2px solid #000000;
  border-radius: 10px;
  background-color: #002E77;
  transition: transform 0.2s ease-in-out;
}
.card:hover {
  transform: scale(1.1); /* Escala al 110% del tamaño original */
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.content {
  padding: 20px;
}

h2 {
  margin-top: 0;
  text-align: center;
  color: #ffffff;
}

hr {
  margin: 10px 0;
  border: none;
  border-top: 1px solid #ccc; /* Línea que separa la imagen del texto */
}

.habilidades {
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 600px) {
  .container {
    flex-direction: column;
    align-items: center; 
  }

  .card {
    width: 70%;
  }
}