/* Resetear estilos predeterminados del navegador */
::selection {
    background-color: #8989f5;
    color: #f5f6f7;
  }
/* pantalla de proyectos */
.icono_exit {
  margin-top: 3%;
  margin-right: 3%;
  display: flex;
  justify-content: flex-end;
}

.proyectos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.columna {
  text-align: center;
}

.columna img {
  max-width: 90%;
  margin-top: 4%;
  height: auto;
}
  /* foto perfil */
  .img{
    border-radius: 50%;
    border: 2px solid #0a0a23;
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;

  }
  /* boton flotante */
  .boton-flotante {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
}

.boton-flotante:hover {
    background-color: #0056b3;
}

  /* Experiencia */

.experiencia {
  padding: 40px 40px 60px 40px;
}

.experiencia .columna {
  padding: 20px;
  border: 2px solid #8080804d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transition: all 0.2s ease-in;
}

.experiencia .columna:hover {
  color: white;
  background-color: #1b1b32;
}

.experiencia i {
  font-size: 2.5rem;
  color: #7ade30;
  background-color: #0a0a23;
  padding: 8px 19px;
  border-radius: 50%;
}

.experiencia-titulo {
  font-size: 25px;
  font-weight: bold;
  margin: 10px 0;
}

.badges-contenedor {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.badge {
  margin: 5px;
}

  /* Proyectos */
.proyectos-recientes {
    padding: 40px;
  }
  
  .proyectos-recientes img {
    height: 50%;
    width: 50%;
    padding: 10px;
    border-radius: 10px;
    display: block;
    transition: all 0.2s ease;
  }
  
  .proyectos-contenedor {
    padding-top: 60px;
    margin-bottom: 40px;
  }
  
  .overlay {
      transition: all 0.2s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 26%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #9ec3eb;
    width: 50%;
    height: 50%;
  }
  
  .overlay p {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
  }
  
  .proyecto {
    position: relative;  
  }

 
  
  .overlay:hover {
    opacity: 1;
  }
  
  .overlay .iconos-contenedor {
    display: flex;
  }
  
  .overlay i {
    color: black;
    font-size: 60px;
    margin: 10px;
  }

  .titulo{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Pie de pagina (footer) */
 
  .icon-container {
    display: flex;
    justify-content: center; /* Centra horizontalmente los elementos en el contenedor */
}

.icon-container i {
    font-size: 24px; /* Tamaño del ícono */
    margin: 0 10px; /* Espacio entre los iconos */
}

  footer {
    min-height: 200px;
  }
  
  .footer-logo {
    height: 80px;
    width: 80px;
    margin: 10px;
  }
  
  .footer-texto {
    font-size: 1.5rem;
    padding: 20px;
    margin-bottom: 30px;
    font-family: 'Quicksand', sans-serif;
  }
  
  .iconos-redes-sociales a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    margin: 10px;
    border: 2px solid white;
    border-radius: 50%;
    transition: all 0.2s ease-in;
  }
  
  
  .iconos-redes-sociales i {
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    transition: all 0.2s ease-in;
  }
  
  .iconos-redes-sociales a:hover {
    background-color: white;
    border: 2px solid rgb(13, 110, 253);
  }
  
  .iconos-redes-sociales a:hover i {
    color: black;
  }
  
  .derechos-de-autor {
    font-size: 15px;
    color: #aeaeae;
    padding: 20px;
  }
  

body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Estilos globales */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

header {
    background-color: #0a0a23;
    color: #fff;
    text-align: center;
    padding: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #0a0a23;
}

nav li {
    margin: 10px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

section {
    padding: 20px;
    margin: 20px;
    background-color: #fff;
    border-radius: 5px;
}

/* Estilos específicos para dispositivos más pequeños (responsive) */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

}

