
.project-date{
    display: flex;
    font-size: 1em;
}

.calendar-icon{
    width: 12px;
    margin-right: 5px;
}

.project-links{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.link-content{
    display: flex;
}

.link-content:hover{
    color: blue;
}

.link-content:hover div svg path{
    fill: blue;
}

.link-icon{
    width: 15px;
    margin-right: 5px;
}

.technollogy-container{
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.technollogy-icon{
    width: 20px;
    margin-right: 10px;

    cursor: pointer;
    transition: transform 0.3s ease;
}

.technollogy-icon:hover{
    transform: scale(1.2); /* Efecto de zoom */
}

.technollogy-icon img{
    width: 100%;
}

.technollogies-section h3{
    margin-bottom: 5px;
}

.project-app {
    width: 85%;
    margin: auto;
    margin-top: 40px;
    position: relative;
    overflow: hidden; /* Para evitar que elementos salgan del contenedor */
    border-radius: 5px; /* Bordes redondeados */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para destacar el contenedor */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición al hacer hover */
}

.project-app:hover {
    transform: scale(1.05); /* Efecto de zoom */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Sombra más pronunciada */
}

.project-app img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease; /* Transición de opacidad */
}

.project-app:hover img {
    opacity: 0.8; /* Imagen ligeramente oscurecida al hacer hover */
}

.project-app div {
    display: none;
    background-color: rgba(255, 255, 255, 0.9); /* Fondo translúcido */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease; /* Transición para suavizar la aparición */
}

.project-app:hover div {
    display: flex;
    opacity: 1;
}

.project-app div svg {
    width: 10%; /* SVG más grande para mejor visibilidad */
    fill: #333; /* Color más oscuro para mejor contraste */
    transition: transform 0.3s ease; /* Transición al hacer hover */
}

.project-app div svg:hover {
  transform: scale(1.05); /* Efecto de zoom en el ícono */
  fill: blue; /* Cambiar color al pasar el cursor */
}

.wrapper{
  display: flex;
  max-width: 1200px;
  width: 90%;
  margin: auto;
  position: relative;
  margin-top: 75px;
  margin-bottom: 75px;
}
.wrapper i{
  top: 50%;
  height: 44px;
  width: 44px;
  color: #343F4F;
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 44px;
  background: white;
  border-radius: 0;
  border: solid 1px black;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}

.wrapper i svg{
  width: 30%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: gray;
}

.wrapper i:active{
  transform: translateY(-50%) scale(0.9);
}
.wrapper i:hover{
  background: blue;
  border: white;
}

.wrapper i:hover svg{
  fill: white;
}

.wrapper i:first-child{
  left: -22px;
  display: none;
}



.wrapper i:last-child{
  right: -22px;
}
.wrapper .carousel{
  font-size: 0px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}
.carousel.dragging{
  cursor: grab;
  scroll-behavior: auto;
}
.carousel.dragging img{
  pointer-events: none;
}
.carousel img{
  width: 80%;
  object-fit: cover;
  user-select: none;
  margin-left: 14px;
  width: calc(100% / 3);
}
.carousel img:first-child{
  margin-left: 0px;
}

@media screen and (max-width: 900px) {
  .carousel img{
    width: calc(100% / 2);
  }

  .horizontal-carousel img{
    width: 100%;
  }

  .wrapper i{
    height: 30px;
    width: 30px;
    line-height: 30px;
  }

  .wrapper i:first-child{
    left: -15px;
  }

  .wrapper i:last-child{
    right: -15px;
  }

  
}

@media screen and (max-width: 550px) {
  .carousel img{
    width: 100%;
  }

  .horizontal-carousel img{
    width: 100%;
  }

  .wrapper i{
    height: 30px;
    width: 30px;
    line-height: 30px;
  }

  .wrapper i:first-child{
    left: -15px;
  }

  .wrapper i:last-child{
    right: -15px;
  }
}

.horizontal-carousel img{
  width: 100%;
}

.p5jsApp{
  margin-top: 15px;
  margin-bottom: 15px;
}

.p5jsApp iframe{
  width: 100%;
  aspect-ratio: 5 / 4; 
  height: auto;
}
