.TextoMiniatura h5::before {
  content: "<";
  color: blue; /* Ajusta el color según tus preferencias */
  font-weight: bold;
}

.TextoMiniatura h5::after{
  content: "/>";
  color: blueviolet;
  font-weight: bold;
}

.TextoMiniatura h5 {
  color:red;
  margin-top: 10px;
  margin-left: 15px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  margin-right: 1300px;
}




.navbar {
  background-color: rgba(0, 0, 0, 0.1); /* Fondo negro semitransparente */
  backdrop-filter: blur(10px); /* Efecto borroso */
    width: 100vw; /* Ancho igual al ancho de la ventana */
    overflow-x: hidden; /* Oculta el desplazamiento horizontal */
    color: white;
}

.nav-item{
  font-weight: bold;
  color: white;
}

#TextoHola{
  color: blue;
  font-weight: bold;
}

#nombre{
  color: red;
  font-weight: bold;
}

.image-container{
  display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.image-container img {
  max-width: 80%; /* Ajusta el tamaño de la imagen según sea necesario */
  max-height: 80%; /* Ajusta el tamaño de la imagen según sea necesario */
}


.content-center{
  text-align: center;
  color: white;
}




.musica{
  margin-top: 60px;
  text-align: center;
  padding-left: 70px;
  padding-right: 70px;
  z-index: 9999;
}

.musica button {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  margin: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  backdrop-filter: blur(5px);
}

.musica button:hover {
  background-color: rgba(52, 73, 94, 0.8);
  transform: translateY(-5px);
}


body {
  overflow-x: hidden;
}


#img-1{
  width: 200px;
  height: 200px;
}

#img-2{
  width: 200px;
  height: 200px;
}

#img-3{
  width: 200px;
  height: 200px;
}
#img-4{
  width: 200px;
  height: 200px;
}

#img-5{
  width: 200px;
  height: 200px;
}

#img-6{
  width: 200px;
  height: 200px;
}

#img-7{
  width: 200px;
  height: 200px;
}

#img-8{
  width: 200px;
  height: 200px;
}

#img-9{
  width: 200px;
  height: 200px;
}

#img-10{
  width: 200px;
  height: 200px;
}

#whatssap {
  width: 80px;
  height: 80px;
  margin-left: 10px;
  margin-top: 10px;
  position: fixed;
  bottom: 10px;
  right: 10px;
}


.skills-container{
  display: flex;
  justify-content: center;
}


.footer{
  text-align: center;
  background-color: black;
  padding: 20px;
  color: white;
  margin-top: 50px;
}




@media (max-width: 600px) {
  .musica {
    flex-direction: row; /* Cambiar a una fila horizontal */
    flex-wrap: wrap; /* Permitir que los botones se envuelvan en múltiples filas */
    justify-content: flex-start; /* Alinear los botones a la izquierda */
  }

  .musica button {
    flex-basis: 50%; /* Ocupar el 50% del ancho disponible para que haya 2 botones por fila */
  }
}





.nav-link {
  text-decoration: none; /* Eliminar subrayado del enlace */
  color: white;
}

.nav-item {
  display: inline-block; /* Mostrar los elementos de navegación en línea */
  margin-right: 10px; /* Ajustar el margen derecho entre elementos de navegación */
  border: 1px solid #140707; /* Color del borde de los botones, en este caso rojo (#ff0000) */
  border-radius: 10px;
}


header {
  border-bottom: 2px solid #120613d6; /* Color del borde de la barra, en este caso rojo (#ff0000) */
}


.text-center{
  font-weight: bold;
  color: white;
}

h5{
  font-weight: bold;
}

#typing-text{
  font-weight: bold;
}







/*body {
  background-image: url("img/desarrollo.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}*/

body {
  background-image: linear-gradient(135deg, #00d2ff, #3a7bd5, #007bff);
}


.skill {
  position: relative;
  perspective: 1000px; /* Establece la perspectiva para la animación 3D */
}

.skill img {
  transition: transform 2s; /* Transición suave para el efecto giratorio */
}

.skill:hover img {
  transform: rotateY(360deg); /* Rota la imagen 360 grados en el eje Y */
}

.skill.rotate img {
  animation: rotateAnimation 2s linear; /* Aplica la animación de rotación */
}

@keyframes rotateAnimation {
  from {
    transform: rotateY(0deg); /* Estado inicial de la rotación */
  }
  to {
    transform: rotateY(360deg); /* Estado final de la rotación */
  }
}




















