@font-face {
          font-family: "PP Supply Mono";
          src: url("https://assets.codepen.io/7558/PPSupplyMono-Variable.woff2")
            format("woff2");
          font-weight: 100 900;
          font-display: swap;
        }

        *,
        *::after,
        *::before {
          box-sizing: border-box;
        }

        :root {
          --color-foreground: rgb(250, 225, 250);
          --color-background: rgb(5, 5, 5);
          --color-accent: rgb(255, 223, 0);
          --font-primary: "PP Supply Mono", monospace;
        }

        html, body { 
            margin: 0; 
            padding: 0;
        }

        body {
            background: black;
            overflow-x: hidden;  
            font-family: var(--font-primary);
        }

        /* Corner Elements - Ahora en la parte superior */
        .corner-elements {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: flex-start;
            padding: 5px 1% 5px 1%;
            pointer-events: none;
            transition: opacity 0.4s ease;
            border-top: 1px solid #383838;
            z-index: 1001;
        }

        .corner-item {
            font-family: var(--font-primary);
            color: var(--color-foreground);
            font-size: clamp(0.8rem, 1.5vw, 1rem);
            pointer-events: auto;
        }

        .corner-item a {
            color: var(--color-foreground);
            text-decoration: none;
        }

        .corner-item a:hover {
            text-decoration: underline;
        }

        .top-left {
            justify-self: start;color:#909279 ;
            font-size: 13px
        }
a.leftCorner{color: #2d7501; font-size: 12px}
        .top-center {
            justify-self: center;
        }

        .top-right a{
          color:#14690b!important ; 
        font-size: 13px }

        .top-right {
          color:#285719!important ;
            justify-self: end;
            display: flex;
            gap: 0.5rem;
        }

        .corner-elements.hidden {
            opacity: 0;
            pointer-events: none;
        }
.current-time{ color:#87878787 }
        /* Header principal - Ahora debajo de corner-elements */
        .header {
            position: fixed;
            top: 23px; /* Dejamos espacio para corner-elements */
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

        .logo {
            font-family: var(--font-primary);
            color: var(--color-foreground);
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .logo-image {
            height: clamp(30px, 5vw, 50px);
            width: auto;
            opacity: 1 !important;
            margin: 0 !important;
        }

        .nav-desktop {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
.nav-desktop a {
    color: var(--color-foreground);
    text-decoration: none;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative; /* This is crucial for positioning the pseudo-element */
    padding-bottom: 4px;
}
.nav-desktop a.active { color: rgb(255 255 255 / 37%)  !important}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0; /* Adjust to sit right under the text */
    left: 0;
    width: 100%; /* Set width to 100% of the parent link */
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(0); /* Start with a scale of 0 */
    transform-origin: left; /* Make it expand from the left */
    transition: transform 0.3s ease-in-out;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    transform: scaleX(1); /* Expand the underline on hover or active state */
}

/* Remove the old animation keyframes since we're using transform now */
@keyframes underlineGlow {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--color-foreground);
            margin: 3px 0;
            transition: 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .nav-mobile {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            z-index: 1200;
        }

        .nav-mobile.active {
            transform: translateY(0);
        }

        .nav-mobile a {
            color: var(--color-foreground);
            text-decoration: none;
            font-size: clamp(1.5rem, 4vw, 2rem);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: color 0.3s ease;
        }

        .nav-mobile a:hover {
            color: var(--color-accent);
        }

        /* Eliminado - time-display ya no se usa */

        .time-blink {
            animation: blink 1s steps(1) infinite;
        }

        @keyframes blink {
            50% {
                opacity: 0;
            }
        }

        /* Main Content */
        section {
            margin: 5vh 5%;
            width: 90%;
            color: white;
            padding-top: 140px; /* MÃ¡s espacio para corner-elements + header */
        }


        
        .col {
            display: flex;
            flex-direction: column;
            gap: 1em;
            margin: 2em 0;
        }

        .right { 
            text-align: right; 
        }

        .center { 
            text-align: center; 
        }

        .last {
            margin-bottom: 0;
            display: grid;
            place-items: center;
        }

        .last > * {
            grid-area: 1 / 1;
        }

        .last h2 {
            color: rgb(255, 255, 255);
        }

        h1 {
            font-size: clamp(3rem, 8vw, 8rem);
            margin: 0;
            opacity: 0;
            line-height: 1;
        }

        h2 {
            font-size: clamp(2rem, 6vw, 6rem);
            margin: 20vh 0;  
            opacity: 0;
            line-height: 1;
        }

        p {
            font-size: clamp(1rem, 3vw, 2rem);
            margin: 0;
            opacity: 0;
            line-height: 1.4;
        }

        img { 
            opacity: 1;
            margin: 2em 0;
            width: 77%;
            height: auto;
            max-width: 100%;
            object-fit: cover;
        }
        .last img {
            width: 21%; 
            height: auto;
            max-width: 100%;
        }

        .col > img {
            max-width: 100%;
            margin: 1em 0;
        }

        /* Welcome Carousel Styles */
        .welcome-carousel-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            margin: 2rem 0;
            height: clamp(4rem, 10vw, 10rem);
            display: flex;
            align-items: center;
            top: 7vh
        }

        .welcome-carousel {
            display: flex;
            animation: scrollHorizontal 15s linear infinite;
            will-change: transform;
            white-space: nowrap;
        }

        .welcome-word {
            font-family: var(--font-primary);
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 700;
            color: var(--color-foreground);
            margin: 0;
            padding-right: clamp(2rem, 5vw, 5rem);
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            opacity: 1;
            flex-shrink: 0;
        }

        @keyframes scrollHorizontal {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-20%);
            }
        }

        .welcome-carousel-container::before,
        .welcome-carousel-container::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: clamp(30px, 5vw, 50px);
            z-index: 2;
            pointer-events: none;
        }

        .welcome-carousel-container::before {
            left: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
        }

        .welcome-carousel-container::after {
            right: 0;
            background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
        }

        .primera{margin-top: -11px }
        /* Portfolio styles */
        .sr-only {
          position: absolute;
          width: 1px;
          height: 1px;
          padding: 0;
          margin: -1px;
          overflow: hidden;
          clip: rect(0, 0, 0, 0);
          white-space: nowrap;
          border: 0;
        }

        .portfolio-container::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: var(--color-background);
          background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
          opacity: 0.3;
          z-index: 100;
          pointer-events: none;
          mix-blend-mode: overlay;
        }

        .portfolio-container {
          display: flex;
          flex-direction: column;
          gap: 0;
          width: 100vw;
          padding: 0 2rem;
          position: relative;
          counter-reset: project-counter 0;
          margin-top: 140px;
        }

        .project-list {
          list-style: none;
          margin: 0;
          padding: 0;
        }

        .project-item {
          cursor: pointer;
          width: 100%;
          display: grid;
          grid-template-columns: 40px 1fr 2fr 1fr 1fr 80px;
          grid-column-gap: clamp(1rem, 2vw, 2rem);
          padding: 12px 0;
          align-items: center;
          border-bottom: 1px solid rgba(200, 255, 200, 0.1);
          transition: all 0.3s ease;
          opacity: 1;
          position: relative;
        }

        .project-item.active {
          opacity: 1;
          box-shadow: inset 0 1px 0 rgba(200, 255, 200, 0.2),
            inset 0 -1px 0 rgba(200, 255, 200, 0.2);
        }

        .portfolio-container.has-active .project-item {
          opacity: 0.3;
        }

        .portfolio-container.has-active .project-item.active {
          opacity: 1;
        }

        .project-item::before {
          content: counter(project-counter, decimal-leading-zero);
          counter-increment: project-counter;
          padding: 4px 0;
          line-height: 0.8;
          opacity: 0.6;
          justify-self: start;
          z-index: 10;
          position: relative;
          transition: opacity 0.1s ease;
          font-size: clamp(0.7rem, 1.2vw, 0.9rem);
        }

        .project-item.counter-hidden::before {
          opacity: 0.05;
        }

        .project-data {
          font-family: var(--font-primary);
          position: relative;
          white-space: nowrap;
          text-decoration: none;
          color: var(--color-foreground);
          z-index: 1;
          transition: all 0.3s ease;
          overflow: hidden;
          text-overflow: ellipsis;
          line-height: 1;
          padding: 2px;
          font-size: clamp(0.7rem, 1.2vw, 0.9rem);
        }

        .project-data.artist {
          justify-self: start;
        }

        .project-data.album {
          justify-self: start;
        }

        .project-data.category {
          justify-self: start;
        }

        .project-data.label {
          justify-self: start;
        }

        .project-data.year {
          justify-self: end;
          text-align: right;
        }

        .project-data::after {
          content: "";
          position: absolute;
          top: 0;
          left: -8px;
          width: calc(100% + 16px);
          height: calc(100% - 2px);
          background: var(--color-accent);
          transition: transform 0.3s ease;
          transform: scaleX(0);
          transform-origin: left;
          z-index: -1;
        }

        .project-item:hover .project-data::after {
          transform: scaleX(1);
        }

        .project-item:hover .project-data {
          color: rgb(10, 10, 10) !important;
        }

        .background-image {
          position: fixed;
          top: 50%;
          left: 50%;
          width: clamp(300px, 50vw, 800px);
          height: clamp(225px, 37.5vw, 600px);
          transform: translate(-50%, -50%) scale(1);
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          opacity: 0;
          transition: opacity 0.6s ease,
            transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          z-index: -2;
        }

/* SISTEMA DE GRID RESPONSIVO DE 3 ESPACIOS */

/* Contenedor principal del grid */
.txt-center {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr; /* Izquierda | Centro (mÃ¡s ancho) | Derecha */
    grid-template-rows: auto;
    gap: 1rem;
    align-items: center;
    justify-items: center;
    margin: 2rem auto;
    padding: 0 2rem;
    min-height: clamp(4rem, 10vw, 10rem);
}

/* Espacios laterales (pueden contener elementos adicionales) */
.txt-center::before,
.txt-center::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.5;
}

/* Elemento central - el h2 con el texto */
.txt-center h2 {
    grid-column: 2; /* Se posiciona en la columna central */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: red;
    position: relative;
    margin: 0;
    height: auto;
    font-size: clamp(2rem, 6vw, 6rem);
    opacity: 1;
    line-height: 1;
    font-family: var(--font-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    overflow: visible;
    transform: none; /* Removemos transforms conflictivos */
    left: auto;
}

/* Si quieres agregar contenido a los espacios laterales */
.grid-left,
.grid-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 0.6;
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: var(--color-foreground);
}

.grid-left {
    grid-column: 1;
    justify-self: start;
}

.grid-right {
    grid-column: 3;
    justify-self: end;
}

/* TABLET - Ajuste intermedio */
@media (max-width: 1024px) {
    .txt-center {
        grid-template-columns: 0.8fr 2.4fr 0.8fr; /* MÃ¡s espacio al centro */
        gap: 0.8rem;
        padding: 0 1.5rem;
    }
    
    .txt-center h2 {
        font-size: clamp(1.8rem, 7vw, 5rem);
    }
}

/* TABLET PEQUEÃ'A - TransiciÃ³n a mÃ³vil */
@media (max-width: 768px) {
    .txt-center {
        grid-template-columns: 0.5fr 3fr 0.5fr; /* AÃºn mÃ¡s espacio al centro */
        gap: 0.5rem;
        padding: 0 1rem;
        margin: 1.5rem auto;
    }
    
    .txt-center h2 {
        font-size: clamp(1.6rem, 8vw, 4rem);
    }
    
    /* Los elementos laterales se hacen mÃ¡s discretos */
    .txt-center::before,
    .txt-center::after {
        opacity: 0.3;
    }
}

/* MÃ"VIL - Cambio radical del layout */
@media (max-width: 480px) {
    .txt-center {
        /* Cambio a layout vertical en mÃ³vil */
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.5rem;
        padding: 0 1rem;
        margin: 1rem auto;
        text-align: center;
    }
    
    .txt-center h2 {
        grid-column: 1; /* Ocupa toda la columna */
        grid-row: 2; /* Se posiciona en el medio verticalmente */
        font-size: clamp(1.4rem, 12vw, 3rem);
        padding: 1rem 0;
    }
    
    /* En mÃ³vil, los pseudo-elementos se convierten en lÃ­neas horizontales */
    .txt-center::before {
        grid-column: 1;
        grid-row: 1;
        height: 1px;
        width: 60%;
        background: linear-gradient(90deg, transparent, red, transparent);
        justify-self: center;
    }
    
    .txt-center::after {
        grid-column: 1;
        grid-row: 3;
        height: 1px;
        width: 60%;
        background: linear-gradient(90deg, transparent, red, transparent);
        justify-self: center;
    }
    
    /* Si hay elementos laterales, se ocultan en mÃ³vil */
    .grid-left,
    .grid-right {
        display: none;
    }
}

/* MÃ"VIL MUY PEQUEÃ'O */
@media (max-width: 320px) {
    .txt-center {
        padding: 0 0.5rem;
        margin: 0.8rem auto;
    }
    
    .txt-center h2 {
        font-size: clamp(1.2rem, 14vw, 2.5rem);
        padding: 0.8rem 0;
        letter-spacing: 0.02em;
    }
    
    .txt-center::before,
    .txt-center::after {
        width: 40%;
    }
}

/* OPCIONAL: Variante con efectos adicionales */
.txt-center.enhanced {
    border: 1px solid rgba(255, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 8px;
}

.txt-center.enhanced::before,
.txt-center.enhanced::after {
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.5), transparent);
    height: 2px;
}

/* AnimaciÃ³n del grid completo */
.txt-center.animated {
    animation: grid-pulse 4s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.01);
        opacity: 0.9;
    }
}

/* Footer fijo en las esquinas */
.footer-corner-elements {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1% 1%;
    pointer-events: none; /* Esto evita que los elementos fijos bloqueen clics en el contenido detrÃ¡s de ellos */
    z-index: 1000;
}

.footer-item {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-foreground);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    display: none; /* Ocultar por defecto para mÃ³viles */
}

.footer-item.left-corner-emoji {
    align-self: flex-start;
}

.footer-item.right-corner-emoji {
    align-self: flex-end;
}
/* Clase para ocultar los elementos de la esquina con transiciÃ³n */
.footer-corner-elements.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
/* Mostrar los elementos solo en vistas de escritorio */
@media (min-width: 768px) {
    .footer-item {
        display: block;
    }
}

/* Estilos para el carrusel de imágenes -TOP */
.image-carousel-container {
    width: 100%;
    height: clamp(300px, 69vh, 600px);
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.5s ease-in-out;
    display: block;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

        /* Responsive Design */
        @media (min-width: 768px) {
          .col {
            flex-direction: row;
            gap: 2em;
          }

          .col > img {
            max-width: 40%;
            margin: 0;
          }

          section {
            margin: 5vh 10%;
            width: 80%;
          }
        }

        @media (min-width: 1024px) {
          section {
            margin: -9vh 13%;
            width: 90%;
          }
        }

        @media (max-width: 1200px) {
          .project-item {
            grid-template-columns: 30px 1fr 1.5fr 0.8fr 0.8fr 60px;
            grid-column-gap: 1rem;
          }
        }

        @media (max-width: 768px) {
          .corner-elements {
            padding: 8px 0.8rem;
            top: 0;
            grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
            gap: 0.5rem;
          }

          .corner-item {
            font-size: clamp(0.7rem, 2.5vw, 0.9rem);
          }

          .top-left {
            font-size: 10px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
          }

          .top-center {
            font-size: 11px;
          }

          .top-right {
            font-size: 10px;
            gap: 0.3rem;
            flex-wrap: wrap;
          }

          .top-right a {
            font-size: 10px !important;
          }

          .header {
            padding: 1rem;
            top: 45px;
          }

          .nav-desktop {
            display: none;
          }

          .menu-toggle {
            display: flex;
          }

          .portfolio-container {
            padding: 0 1rem;
            margin-top: 110px;
          }

          .project-item {
            grid-template-columns: 30px 1fr 1fr;
            grid-column-gap: 1rem;
          }

          .project-data:not(.artist):not(.album) {
            display: none;
          }

          h2 {
            margin: 10vh 0;
          }

          section {
            padding-top: 120px;
          }

          img {
            width: 95%;
            margin: 1.5em 0;
          }

          .image-carousel-container {
            height: clamp(250px, 40vh, 400px);
            margin: 2rem 0;
          }
          
          .foto {
            object-fit: cover;
            object-position: center;
          }
        }

        @media (max-width: 480px) {
          .corner-elements {
            padding: 6px 0.5rem;
            grid-template-columns: minmax(0, 0.8fr) auto minmax(0, 0.8fr);
            gap: 0.3rem;
          }

          .corner-item {
            font-size: clamp(0.6rem, 3vw, 0.8rem);
          }

          .top-left {
            font-size: 9px;
            max-width: 100px;
          }

          .top-left a.leftCorner {
            font-size: 9px !important;
            display: inline-block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
          }

          .top-center {
            font-size: 10px;
            text-align: center;
          }

          .top-center span {
            font-size: 9px !important;
          }

          .current-time {
            font-size: 9px !important;
          }

          .top-right {
            font-size: 9px;
            gap: 0.2rem;
            display: flex;
            flex-direction: column;
            align-items: end;
          }

          .top-right a {
            font-size: 8px !important;
            line-height: 1.2;
          }

          .header {
            padding: 0.5rem 1rem;
            top: 35px;
          }

          .logo-image {
            height: clamp(25px, 4vw, 35px);
          }

          .project-item {
            grid-template-columns: 25px 1fr;
            grid-column-gap: 0.5rem;
          }

          .project-data:not(.artist) {
            display: none;
          }

          section {
            padding-top: 100px;
            margin: 3vh 3%;
            width: 94%;
          }

          .portfolio-container {
            margin-top: 90px;
            padding: 0 0.5rem;
          }

          .welcome-carousel-container {
            height: clamp(3rem, 8vw, 6rem);
            margin: 1.5rem 0;
          }

          .welcome-word {
            font-size: clamp(2rem, 10vw, 4rem);
            padding-right: clamp(1rem, 4vw, 3rem);
          }

          img {
            width: 100%;
            margin: 1em 0;
          }

          .last img {
            width: 30%;
          }

          .image-carousel-container {
            height: clamp(200px, 35vh, 300px);
            margin: 1.5rem 0;
            border-radius: 4px;
          }
          
          .foto {
            border-radius: 4px;
          }
        }

        @media (max-width: 320px) {
          .corner-elements {
            padding: 4px 0.3rem;
            grid-template-columns: minmax(0, 0.7fr) auto minmax(0, 0.7fr);
            gap: 0.2rem;
          }

          .top-left {
            font-size: 8px;
            max-width: 80px;
          }

          .top-left a.leftCorner {
            font-size: 8px !important;
          }

          .top-center {
            font-size: 9px;
          }

          .top-center span {
            font-size: 8px !important;
          }

          .current-time {
            font-size: 8px !important;
          }

          .top-right a {
            font-size: 7px !important;
          }

          .header {
            padding: 0.3rem 0.8rem;
            top: 28px;
          }

          .logo-image {
            height: clamp(20px, 5vw, 30px);
          }

          section {
            padding-top: 80px;
            margin: 2vh 2%;
            width: 96%;
          }

          .portfolio-container {
            margin-top: 70px;
            padding: 0 0.3rem;
          }

          .welcome-carousel-container {
            height: clamp(2.5rem, 12vw, 5rem);
            margin: 1rem 0;
          }

          .welcome-word {
            font-size: clamp(1.5rem, 12vw, 3rem);
          }

          .image-carousel-container {
            height: clamp(180px, 30vh, 250px);
            margin: 1rem 0;
            border-radius: 3px;
          }

          .foto {
            border-radius: 3px;
          }
        }