
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        a {
            text-decoration: none;
            color: inherit;
            outline: none;
        }

        a:hover,
        a:focus,
        a:active,
        a:visited {
            text-decoration: none;
            color: inherit;
            outline: none;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #EBE7DB 0%, #D4CAB0 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .body-code {
            padding:0px;
            background: #272822;
        }
        
        .container {
            max-width: 800px;
            width: 100%;
            text-align: center;
        }
      
        .left-justify {
            text-align:left;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 300;
            /*color: #2c3e50;*/
            /*color: #7F4C2F;*/
            color: #6A4A38;
            margin-bottom: 0.5rem;
            letter-spacing: -1px;
        }

        h4 {
            font-size: 1rem;
            font-weight: 200;
            /*color: #7f8c8d;*/
            color: #B27E57;
            margin: 0.35rem;
        }

        p + p {
            margin-top: 1rem;
        }

        .home-button-container {
            /*border: 1px solid #7f8c8d80;*/
            border: 1px solid #B27E5780;
            width: fit-content;
            transition: all 0.3s ease;
        }

        .home-button-container:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.03);
        }

        .subtitle {
            font-size: 1.2rem;
            /*color: #7f8c8d;*/
            color: #B27E57;
            margin-bottom: 3rem;
            font-weight: 300;
        }

       .cards-container {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
            opacity: 0;
        }

        .tags-container {
            display: flex;
            gap: .5rem;
            justify-content: left;
            flex-wrap: wrap;
            margin-top: .5rem;
            opacity: 0;
        }
        
        .project-content-container {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
            opacity: 0;
        }

        .card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            min-width: 250px;
            max-width: 300px;
        }

        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .project-card {
            padding: 2rem 2rem;
            min-width: 100%;
            max-width: 800px;
        }

        .tag-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;            
            padding: .2rem .8rem;
            min-width: 10px;
            max-width: 800px;
            border-radius: 13px;
        }

        .button-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;            
            padding: 1.25rem 1.25rem;
            min-width: 10px;
            max-width: 800px;
            border-radius: 15px;
            text-align: center;
            justify-content: center;
        }

        .button-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .button-card p {
            font-size: 1rem;
            font-weight: 600;
        }

        .project-text-block {
            margin-top: 2rem;
            padding: 2rem 2rem;
            min-width: 100%;
            max-width: 800px;
            border-radius: 20px;
            border: 1px solid #AD9372;
            transition: all 0.3s ease;
        }

        .project-display-block {
            margin-top: 2rem;
            min-width: 100%;
            max-width: 800px;
            min-height: 500px;
            border-radius: 20px;
            /*border: 1px solid #AD9372;*/
            border: 1px solid #956a49;
            transition: all 0.3s ease;
        }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .card-description {
            color: #7f8c8d;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .tag-text {
            font-size: 1.1rem;
            line-height: 1.5;
            margin-bottom:0rem;
            font-weight: 600;
        }

        .project-text {
            color: #956a49;
            font-size: 1rem;
            line-height: 1.5;
        }

        .color-stone {
            background: linear-gradient(135deg, #B2997B 0%, #A78A67 100%);
            color: white;
        }

        .color-stone .card-title,
        .color-stone .card-description {
            color: white;
        }

        .color-coffee {
            background: linear-gradient(135deg, #B78562 0%, #AB754F 100%);
            color: white;
        }

        .color-coffee .card-title,
        .color-coffee .card-description {
            color: white;
        }

        .color-ochre {
            background: linear-gradient(135deg, #8A5133 0%, #73442B 100%);
            color: white;
        }

        .color-ochre .card-title,
        .color-ochre .card-description {
            color: white;
        }

        .color-gum {
            background: linear-gradient(135deg, #869173 0%, #778165 100%);
            color: white;
        }

        .color-gum .card-title,
        .color-gum .card-description {
            color: white;
        }

        .color-gray {
            background: linear-gradient(135deg, #696969 0%, #2f2f2f 100%);
            color: white;
        }

        .color-gray .card-title,
        .color-gray .card-description {
            color: white;
        }

        .coming-soon-tag {
            position: absolute;
            top: -10px;
            right: -10px;
            background: linear-gradient(45deg, #8A5133, #73442B);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(130, 57, 15, 0.4);
        }

        /*.portfolio-project-card-1 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .portfolio-project-card-1 .card-title,
        .portfolio-project-card-1 .card-description {
            color: white;
        }

        .portfolio-project-card-2 {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
        }

        .portfolio-project-card-2 .card-title,
        .portfolio-project-card-2 .card-description {
            color: white;
        }

        .portfolio-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .portfolio-card .card-title,
        .portfolio-card .card-description {
            color: white;
        }

        .resume-card {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
        }

        .resume-card .card-title,
        .resume-card .card-description {
            color: white;
        }*/

        
       
        .footer {
            position: relative;
            bottom: 20px;
            color: #B27E5750;
            font-size: 0.9rem;
            margin-top: 60px;
            text-align: center;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .cards-container {
                flex-direction: column;
                align-items: center;
            }
            
            .card {
                width: 100%;
                max-width: 350px;
            }
        }

       @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .container > * {
            animation: fadeInUp 0.6s ease forwards;
        }

        .cards-container {
            animation-delay: 0.2s;
        }

        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(5px);
            opacity: 0;
            animation: fadeIn 0.3s ease forwards;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            width: 90%;
            max-width: 900px;
            height: 90%;
            max-height: 800px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transform: scale(0.8) translateY(20px);
            animation: slideUp 0.3s ease forwards;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid #e0e0e0;
            background: #f8f9fa;
        }

        .modal-header h3 {
            margin: 0;
            color: #2c3e50;
            font-size: 1.3rem;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 2rem;
            color: #7f8c8d;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .close-btn:hover {
            background: #e74c3c;
            color: white;
        }

        .modal-body {
            flex: 1;
            padding: 0;
            overflow: hidden;
        }

        .modal-body iframe {
            border: none;
        }

        .modal-backdrop.fade-out {
            animation: fadeOut 0.3s ease forwards;
        }

        .modal-backdrop.fade-out .modal-content {
            animation: slideDown 0.3s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        @keyframes fadeOut {
            to {
                opacity: 0;
            }
        }

        @keyframes slideUp {
            to {
                transform: scale(1) translateY(0);
            }
        }

        @keyframes slideDown {
            to {
                transform: scale(0.8) translateY(20px);
            }
        }

