/*
Theme Name: Felix Blanco
Theme URI: https://blancofelix.com
Author: Felix Blanco
Author URI: https://blancofelix.com
Description: Tema personal usando wordpress para manejar contenido y portafolio
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mi-tema
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-brands/css/uicons-brands.css');

body{
    background-color: #12233E;
    font-family: "Inter", sans-serif;
}

.skills li{
    border: 1px solid #F6AD55;
    padding: 10px;
    border-radius: 20px;
}


.image-container {
  display: inline-block;
  position: relative;
  padding: 8px; /* Espacio para el borde animado */
  background: #2D3748; /* Fondo del contenedor (opcional) */
  border-radius: 12px; /* Esquinas redondeadas */
}

.animated-border {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px; /* Ajusta según tu imagen */
  position: relative;
  z-index: 1;
}

/* Efecto de borde animado */
.animated-border::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #F6AD55, #2D3748, #F6AD55);
  background-size: 200% 200%;
  z-index: -1;
  border-radius: 12px;
  animation: borderAnimation 3s linear infinite;
  opacity: 0.8;
}

@keyframes borderAnimation {
  0% {
    background-position: 0% 50%;
    background-color: aqua;
  }
  50% {
    background-position: 100% 50%;
    background-color: orange;
  }
  100% {
    background-color: aqua;
    background-position: 0% 50%;
  }
}


.img-post{
    background-color: white;
    padding: 8px;
    border-radius: 6px;
}