<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&amp;display=swap');
* {
    box-sizing: border-box;
    margin: 0;
}
:root {
    --primary-color: #2e2d28;
    --site-bg-color: rgb(251,251,251);
    --accent-color-primary: #ffa62c;
    --accent-color-secondary: #3e5b5f;
    --theme-switch-color-dark: #2e2d28;
    --theme-switch-color-light: #fff;
    --card-color: #fff;
    --background-image: url("./images/img_03.jpg") no-repeat center center fixed;
    --hover-color: #ffa62c;
    --glow-color: #f55641;
    --modal-btn-color: #3e5b5f;
    --modal-title-color: #2e2d28;
}
.darkmode {
    --primary-color: rgb(148, 163, 184);
    --site-bg-color: #0f172a;
    --accent-color-primary: #ffa62c;
    --accent-color-secondary: #fff;
    --theme-switch-color-dark: #2e2d28;
    --theme-switch-color-light: #fff;
    --card-color: #1e293b;
    --background-image: url("./images/img_dark_2.jpg") no-repeat center center fixed;
    --glow-color: #00b3ff;
    --hover-color: #00b3ff;
    --modal-btn-color: #00b3ff;
    --modal-title-color: #fff;
}
body {
    background: var(--background-image);
    background-size: cover;
    place-items: center;
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    font-size: 1.2em;
    min-height: 100%;
    height: auto;
    overflow-x: hidden;
    width: 100%;
}
html {
    
    background-color: #0f172a;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow-x: hidden;
    scroll-behavior: smooth;
    min-height: 100%;
    height: 100%;
    width: 100%;
  }
a {
    display: block;
    padding: 1em 1em;
    text-decoration: none;
    color: var(--accent-color-secondary);
    cursor: pointer;
}
a:hover {
    color: var(--hover-color);
    transition: .2s ease-in;
}
.btn {
    display: block;
    border: 1px solid var(--accent-color-secondary);
    border-radius: 50px;
    width: 200px;
    max-height: 100%;
    margin: 0 auto;
    margin-bottom: 1em;
    color: var(--accent-color-secondary);
    font-weight: 700;
    font-size: 1rem;
}
.btn:hover {
    background-color: var(--accent-color-primary);
    border: 1px solid #fff;
    color: #fff;
    transition: .2s ease-in;
}
.note {
    font-size: .6em;
    font-weight: 500;
}
h1 {
    font-size: 2em;
}
h3 &gt; a {
    color: var(--accent-color-secondary);
    font-weight: 700;
    font-size: 1em;
    width: 100%;
}
h4 {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 1rem;
    width: 100%;
}
p {
    line-height: 1.5em;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
}
i {
    color: var(--accent-color-secondary);
}
ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
li {
    font-weight: 700;
    line-height: 1em;
    font-size: .8em;
    width: 50%;
    text-align: center;
}
img {
    width: 60%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}
/* Scroll Top */
#scroll-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 2em;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color-primary);
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 50%;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-property: background-color, color;
    z-index: 1;
}
#scroll-top-btn:hover {
    background: #3e5b5f;
    color: #2e2d28;
}
.fa-chevron-up {
    color: white;
}
/******** Animations 
*******   Btn entrance *******/
.btnEntrance {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: btnEntrance;
  }
@keyframes btnEntrance {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 1;
    }
}
/* Btn Exit */
.btnExit {
animation-duration: 0.25s;
animation-fill-mode: both;
animation-name: btnExit;
}
@keyframes btnExit {
    from {
    opacity: 1;
    }
    to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
    }
}
/*******************
NAVIGATION 
*******************/
header {
    background: var(--site-bg-color);
    display: flex;
    justify-content: flex-end;
    padding: .6em 2em;
    position: fixed;
    z-index: 1;
    width: 100%;
    box-shadow: 0 10px 20px rgba(30, 45, 56, .1);;
}
header &gt; div {
    position: absolute;
    left: 20px;
    top: 20px;
    max-width: 500px;
    max-height: auto;
}
nav {
    display: flex;
    overflow: hidden;
    justify-content: space-evenly;
    width: 60%;
    height: 100%;
    padding: 1em;
}
nav &gt; ul {
    width: 90%;
}
nav &gt; ul &gt; li &gt; a {
    color: var(--accent-color-secondary);
    font-size: 1.1em;
}
.footer {
    display: block;
    position: sticky;
    width: 100%;
    background-color: var(--primary-color);
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}
.footer &gt; p {
    color: var(--site-bg-color);
}
.logo {
    color: var(--primary-color);
    margin-top: 8px;
    &amp; .fa-dev {
        font-size: 1.1em;
        margin-left: 5px;
    }
}
.darkmode .logo {
    color: #fff;
}
/*===============
== Branding=====
=============== */
.branding {
    height: 100vh;
    background-color: rgba(251, 251, 251, .7);
}
.darkmode .branding {
    background: transparent;
}
.branding-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50%;
    margin: 0 auto;
    padding: 1em;
    position: relative;
    top: 150px;

    &amp; span {
        color: var(--glow-color);
    }
}
.hero-img {
    max-width: 300px;
    min-width: 250px;
}
.hero-img-2 {
    max-width: 600px;
    min-width: 400px;
}
.branding-container h1 {
    color: var(--primary-color);
}
.darkmode .branding-container h1 {
    color: var(--theme-switch-color-light);
}
.scroll {
    /* display: block; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    top: 160px;
    margin: auto;
    text-align: center;
    padding-bottom: 40px;
    width: 200px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1.2em;
}
.chevron {
    animation: pulse 1.5s infinite alternate-reverse;
}
.darkmode .chevron {
    color: #00b3ff;
    text-shadow: 
    0 0 10px #00b3ff,
    0 0 20px #00b3ff,
    0 0 40px #00b3ff,
    0 0 80px #00b3ff,
    0 0 120px #00b3ff;
}
@keyframes pulse {
    from {
        transform: translate(0px, 20px);
        z-index: 5; 
    }
    to {
        transform: translate(0px, 40px);
    }
}
/*===============
== ABOUT ME=====
=============== */
.container-base {
    margin: 0 auto;
    max-width: 1200px;
}
.about-me-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.description {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: flex-start;
    text-align: left;
    &amp; h1 {
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    &amp; h4 {
        color: var(--primary-color);
        margin-bottom: 10px;
        font-size: 1em;
        
        &amp; span {
            color: var(--glow-color);
            font-weight: 800;
        }
    }
    &amp; p {
        color: var(--primary-color);
        font-weight: 300;
        font-size: .9em;
    }
}
.statistics {
    display: flex;
    margin-top: 20px;
    max-width: 600px;
    &amp; li {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        text-align: left;

    }
    &amp; h3 {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 2em;
        margin-bottom: 10px;
    }
    &amp; span {
        color: var(--glow-color);
    }
}
/*===============
== AREAS OF EXPERTISE=====
=============== */
.skill-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    width: 100%;
    &amp; .social-media-link {
        cursor: pointer;
    }
    &amp; .skill-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        border-radius: 5px;
        width: 200px;
        height: 200px;
        cursor: default;
        background-color: var(--card-color);
        box-shadow: 0 10px 20px rgba(30, 45, 56, .1);
        &amp; .skill-img {
            width: 160px;
            height: 100px;
            object-fit: cover;
            padding-top: 5px;
        }
        &amp; .skill-text {
            width: 200px;
            height: 100px;
            padding: 10px;

            &amp; h4 {
                font-size: 1em;
                font-weight: 600;
                color: var(--glow-color);
            }

            &amp; h3 {
                color: var(--glow-color);
            }
            &amp; p {
                line-height: 20px;
                font-size: 1rem;
            }
        }
    }
    &amp; .skill-card:hover {
        transition: .2s ease-in;
        transform: translateY(-5px);
        will-change: transform;
        box-shadow: 0 10px 20px rgba(30, 45, 56, .1)
    }
    .darkmode .skill-card:hover {
        background: rgba(251, 251, 251, .1);
    }
}
/* ===============
=== SOCIAL MEDIA ICONS */

.social-media-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    width: 100%;

    &amp; a {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        border-radius: 5px;
        width: 100px;
        height: 100px;
        cursor: pointer;
        background-color: var(--card-color);
        box-shadow: 0 10px 20px rgba(30, 45, 56, .1);
        font-size: 1.4em;
    }

    &amp; a:hover {
        transition: .2s ease-in;
        transform: translateY(-5px);
        will-change: transform;
        box-shadow: 0 10px 20px rgba(30, 45, 56, .1)
    }
}
.darkmode .social-media-container {
    &amp; .fa-brands {
        color: var(--glow-color);
    }
}
/* GLOBAL DIVs */
/* ========== PORTFOLIO SECTIONS ========== */
.portfolio-section {
    height: 100%;
    padding-left: 4em;
    padding-right: 4em;
    padding-bottom: 2em;
    padding-top: 200px;
    text-align: center;
    background: var(--site-bg-color);
}
.final-section {
    margin-bottom: -200px;
}
.container-base {
    display: block;
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
    place-items: center;
}
.transparent-section {
    height: 100%;
    padding-top: 200px;
}
.footer-section {
    height: 100px;
    background: var(--primary-color);
}
.footer-section &gt; p {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    color: #fff;
}
.section-modal {
    display: flex;
    padding-left: 4em;
    padding-bottom: 4em;
    padding-top: 200px;
    text-align: center;
    background: rgba(251, 251, 251, .7);
}
.darkmode .section-modal {
    background: transparent;
}
.case-study-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(30, 45, 56, .1);
    padding: 4em;
    width: 95%;
}
.case-study-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.case-study {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 100px;
}
.case-study-h3 {
    color: var(--glow-color);
    text-align: left;
    line-height: 2.6em;
}
.case-study-p {
    text-align: left;
}
.section-value-6 {
    height: 120vh;
}
.lesson-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 1400px;
    margin-top: 40px;
}
.link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.lesson-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: 100%;
    text-align: center;
    align-items: center;
    cursor: default;
    background-color: var(--card-color);
    box-shadow: 0 10px 20px rgba(30, 45, 56, .1);
    padding: .5em;
    border-radius: 5px;
}
.darkmode .lesson-card {
    border: .5px solid rgba(251, 251, 251, .1);
    filter: drop-shadow(0 0 3px rgba(45, 181, 223, .2));
}
.card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.aos:nth-of-type(1) {grid-column: 1 / span 2;}
.aos:nth-of-type(4) {grid-column: 1 / span 2;}
.aos:nth-of-type(5) {grid-column: 2 / span 2; grid-row: 2 / span 1;}
.aos:nth-of-type(7) {grid-column: 1 / span 2; grid-row: 4 / span 4;}
.aos:nth-of-type(8) {grid-column: 3 / span 1; grid-row: 4 / span 4;}
.aos:nth-of-type(9) {grid-column: 1 / span 3; grid-row: 8 / span 2;}
.lesson-card:hover {
    transition: .2s ease-in;
    transform: translateY(-5px);
    will-change: transform;
    box-shadow: 0 10px 20px rgba(30, 45, 56, .1)
}
.darkmode .lesson-card:hover {
    background: rgba(251, 251, 251, .1);
}
.text-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
    padding: 1em;
}
.text-container p, h4 {
    color: var(--primary-color);
}
.darkmode .text-container p {
    color: #fff;
}
/*==============
TEXT GLOW EFFECT 
================*/
.tech-stack {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.scroll-mobile-2 {
    top: 900px;
}
.scroll-mobile-3 {
    top: 800px;
}
.scroll-mobile-4 {
    top: 800px;
}

/*************************************
RESPONSIVE DESIGN 
**************************************/
.menu-wrap {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.toggler {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    opacity: 0;
    
}

/* Toggler Animate */
.toggler:checked + .hamburger &gt; div {
    transform: rotate(135deg);
    background-color: #fff;
}

/* Turn lines into X */
.toggler:checked + .hamburger &gt; div::before, .toggler:checked + .hamburger&gt;div::after {
    top: 0;
    transform: rotate(90deg);
}

/* Rotate on hover whe checked */

.toggler:checked:hover + .hamburger &gt; div {
    transform: rotate(225deg);
}

/* Show Menu */

.toggler:checked ~ .menu-items {
    visibility: visible;
}

.toggler:checked ~ .menu-items &gt; div {
    transform: scale(1);
    transition-duration: .75s;
}

.toggler:checked ~ .menu-items &gt; div &gt; div {
    opacity: 1;
    transform: opacity .4s ease;
}


/* Hamburger Menu */
.hamburger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 1rem;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger &gt; div {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}

.hamburger &gt; div::before, .hamburger &gt; div::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
}

.hamburger &gt; div::after {
    top: 10px;
}

.menu-items {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.first-div {
    background: rgba(30, 30, 30, 0.96);
    width: 300vw;
    height: 300vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all .4s ease;
}

.second-div {
    text-align: center;
    width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity .4s ease;
    color: white;
}

.second-div &gt; h2 {
    font-size: 1.4em;
    padding: 1em;
    text-align: right;
}

.second-div, a {
    color: #fff;
}



/* ========MODALS ==========
========================= */

.modal-container {
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 99999999;
    opacity: 0;
    pointer-events: none; /*This helps you click objects while modal is hidden, otherwise modal blocks everything */
    transition: opacity .3s ease-in-out;
}

.open-modal.show {
    pointer-events: auto;
    opacity: 1;
}

.modal-card {
    display: flex;
    flex-direction: column;
    background: var(--site-bg-color);
    width: 100vw;
    height: 100vh;
    /* border-radius: 5px; */
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 20px;
    /* box-shadow: 0 10px 20px rgba(30, 45, 56, .1); */
}

.modal-header {
    width: 95%;
    display: flex;
    align-items: right;
    justify-content: right;
    margin: 0 auto;
    margin-bottom: -125px;
    background-color: paleturquoise;
}

.modal-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
    background: var(--card-color);
    box-shadow: 0 10px 20px rgba(30, 45, 56, .1);
    padding: 4em;

    &amp; .modal-left {
        width: 50%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;


        &amp; a {
            color: var(--modal-btn-color);
            margin-left: -70px;
            margin-top: 40px;
            font-weight: 400;
            background: var(--modal-btn-color);
            color: var(--theme-switch-color-light);
            padding: 10px 20px;
            border-radius: 5px;

            &amp; i {
                color: #fff;
                margin-left: 10px;
                font-size: .9em;
            }

            &amp;:hover {
                opacity: .9;
            }
        }
    }

    &amp; .modal-text {
        width: 100%;
        text-align: left;

        &amp; .modal-close-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            float: right;
            top: -94px;
            left: 80px;
            /* top: -90px;
            left: 800px; */
            background-color: var(--modal-btn-color);
            box-shadow: 0 10px 20px rgba(30, 45, 56, .1);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            padding: 20px;
            font-size: 1em;
            cursor: pointer;
            z-index: 99999999;
        
            &amp; i {
                color: #fff;
                font-weight: 400;
                font-size: .8em;
            }
        
            &amp;:hover {
                opacity: .9;
                transition: .3s ease-in;
            }
        }

        &amp; h1 {
            margin-bottom: 20px;
            color: var(--modal-title-color);
            font-size: 1.8em;
            font-weight: 900;
        }

        &amp; h3 {
            color: var(--glow-color);
            margin-bottom: 10px;
        }

        &amp; p {
            opacity: .7;
            font-size: .9em;
            margin-bottom: 20px;
            color: var(--modal-title-color);
            text-align: left;
        }
    }
}

.modal-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(30, 45, 56, .1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 99999;
}

.darkmode .modal-close-btn {
    background-color: var(--modal-btn-color);
}

/* ============ 
RESPONSIVE DESIGN 
========== */

@media only screen and (min-width: 1281px) {
    .skill-cards-container {
        max-width: 1000px;
    }

    .modal-content {
        display: flex;

        &amp; .case-study {
            display: block;
            margin: 0 auto;

            &amp; .case-study-p {
                text-align: left;
            }

            &amp; .case-study-h3 {
                text-align: left;
            }

            &amp; .disclaimer {
                text-align: left;
            }
        }
    }

    .modal-left {
        &amp; img {
            min-width: 200px;
            min-height: 200px;
        }
    }
}

@media only screen and (max-width:1280px) {
    .modal-content {
        display: flex;

        &amp; .case-study {
            display: block;
            margin: 0 auto;

            &amp; .case-study-p {
                text-align: left;
            }

            &amp; .case-study-h3 {
                text-align: left;
            }

            &amp; .disclaimer {
                text-align: left;
            }
        }
    }

    .modal-left {
        &amp; img {
            min-width: 200px;
            min-height: 200px;
        }
    }

    .skill-cards-container {
        width: 90%
    }
}

@media only screen and (max-width: 1130px) {
    .modal-content {
        width: 90%;
        height: 90%;
    }

    .modal-text {
        font-size: .95em;
    }
}

@media only screen and (max-width: 1080px) {
    .menu-wrap {
        display: block;
        z-index: 99999;
        top: 25px;
    }
    nav &gt; ul {
        display: none;
    }

    header { 
        padding: 2.3em;
    }

    .themeSwitch {
        position: relative;
        margin-right: 45px;
    }
    
    .section-modal {
        display: block;
        padding-bottom: 4em;
        padding-top: 200px;
        width: 100vw;
    }

    .modal-content {
        flex-direction: column;
        width: 95%;
        height: 95%;
        align-items: flex-start;

        &amp; .modal-left {
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            margin: 0 auto;
            /* margin-top: -60px; */

            &amp; img {
                max-width: 20%;
                max-height: 20%;
            }

            &amp; a {
                margin-right: -100px;
            }
        }

        &amp; .modal-text {
            font-size: .95em;
            margin: 0 auto;
            /* background: yellow; */

            &amp; h1 {
                font-size: 1.4em;
            }

            .modal-close-btn {
                position: relative;
                top: -290px;
            }
        }
    }
} 

@media only screen and (max-width: 828px) {
    .portfolio-section {
        height: 100%;
        width: 100%;
    }
    
    .container-base {
        display: flex;
        flex-direction: column;

        &amp; .about-me-container {
            flex-direction: column;

            &amp; .hero-img-2 {
                width: 50%;
            }
        }
    }

    .lesson-container {
        display: block;

        &amp; .lesson-card {
            margin-bottom: 20px;
        }
    }

    .skill-cards-container, .social-media-container {
        flex-direction: row;
        justify-content: center;
    }

    .section-modal {
        padding-left: 3em;
    }

    .modal-container {
        overflow: scroll;

        &amp; .modal-card {
            height: auto;
            width: 100vw;
        }
    }

    .modal-content {
        width: 95%;
        height: auto;
        margin-top: 260px;

        &amp; .modal-left {
            flex-direction: column;
            padding-bottom: 20px;

            &amp; img {
                max-width: 100px;
                max-height: 100px;
            }
        }

        &amp; .modal-text {
            &amp; .modal-close-btn {
                top: -340px;
            }
            
        }
    }
}

@media only screen and (max-width: 700px) {
    .modal-content {
        margin-top: 360px;
    }
}

@media only screen and (max-width: 600px) {
    .modal-content {
        margin-top: 400px;
    }
}

@media only screen and (max-width: 560px) {

    .branding {
        height: 100vh;
        width: 100%;
    }

    .statistics {
        margin-top: 20px;
        max-width: 600px;
        width: 100%;

        &amp; .professional-list {
            display: flex;
            flex-direction: column;

            &amp; li {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-gap: 5px;
                width: 100%;
                margin-bottom: 20px;
                align-items: center;
            }
        }
    }

    .portfolio-section {
        height: 100%;
        width: 100%;
        

        &amp; .description {
            text-align: center;
            max-width: 300px;
        }
    }

    .skill-cards-container {
        flex-direction: row;
        justify-content: center;
    }

    .section-modal {
        padding-left: 1.5em;
    }

    .modal-card {
        &amp; .modal-content {
            margin-top: 500px;
        }
    }
}

@media only screen and (max-width: 499px) {
    nav {
        position: absolute;
        top: 0;
        right: 0;
    }

    .menu-wrap {
        position: fixed;
    }

    #scroll-top-btn {
        position: fixed;
        right: 20px;
        bottom: 20px;
    }

    .branding-container {

        &amp; h1 {
            font-size: 2rem;
            line-height: 2.5rem;
        }

        &amp; p {
            font-size: 1.1rem;
            margin-top: 20px;
        }
    }

    .container-base {
        margin-top: -30px;
    }

    .statistics {
        margin-top: 20px;
        max-width: 600px;
        width: 100%;

        &amp; .professional-list {
            display: flex;
            flex-direction: column;

            &amp; li {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-gap: 5px;
                width: 100%;
                margin-bottom: 20px;
                align-items: center;
            }
        }
    }

    .modal-content {
        display: flex;

        &amp; .modal-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            &amp; .modal-close-btn {
                top: -340px;
                left: 185px;
            }

            &amp; h1, h3, p {
                text-align: center;
            }

            &amp; h1 {
                font-size: 1.2em;
                width: 100%;
                
            }
        }
    }

    .modal-card {
        margin-top: 200px;
    }

    .skill-cards-container {
        flex-direction: row;
        justify-content: center;
    }
}

@media (hover: hover) and (pointer: fine) {
    #scroll-top-btn {
        color: #ffa62c;
    }
}


/*========= LIGHT-DARK MODE SWITCH ============ */

.themeSwitch {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    top: 40px;
    bottom: 20px;
    right: 40px;
    background: var(--theme-switch-color-dark);
    color: var(--theme-switch-color-light);
    border-radius: 50%;
    cursor: pointer;
}

.themeSwitch::before {
    content: '\f186';
    font-family: fontAwesome;
}

.darkmode .themeSwitch::before {
    content: '\f185';
    font-family: fontAwesome;
}

.darkmode header {
    background: var(--site-bg-color);
}</pre></body></html>