*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
}

:root {
    --cyan: #00FFFF;
    --slightly-darker-cyan: #00DCFF;
    --dark-turquoise: #003566;
    --dark-blue: #0F102D;
    --mid-blue: #2142AB;
    --light-blue: #0080FF;
    --lighter-blue: #0096FF;
    --main-font: "Instrument Sans", sans-serif;
    --secondary-font: "Public Sans", sans-serif;
}

body {
    position: relative;
}

@property --angle1 {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --angle2 {
  syntax: "<angle>";
  initial-value: 30deg;
  inherits: false;
}

@property --angle3 {
  syntax: "<angle>";
  initial-value: 80deg;
  inherits: false;
}

@property --angle4 {
  syntax: "<angle>";
  initial-value: 120deg;
  inherits: false;
}

@keyframes cardRotate {
  to {
    --angle1: 360deg;
    --angle2: 390deg;
    --angle3: 440deg;
    --angle4: 480deg;
  }
}

@keyframes blip {
    0% {
        color: #000;
    }

    100% {
        color: #39FF14;
    }
}

@keyframes scrollIconAnimation {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes scrollZoom {
    0% {
        background-size: 25%;
        transform: rotate(0deg);
    }
    100% {
        background-size: 50%;
        transform: rotate(90deg) scale(4);
    }
}

@keyframes scrollZoomMobile {
    0% {
        background-size: 25%;
        transform: rotate(0deg);
    }
    100% {
        background-size: 80%;
        transform: rotate(90deg) scale(7);
    }
}

@keyframes aboutFadeIn {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

.title {
    font-family: var(--main-font);
    font-size: 44px;
    font-weight: 500;
    background-image: linear-gradient(-160deg, var(--cyan) 0%, var(--slightly-darker-cyan) 70%, var(--lighter-blue) 100%);
    color: transparent;
    background-clip: text;
}

#landing {
    display: flex;
    flex-direction: column;
    background:  linear-gradient(
      rgba(0, 0, 0, 0.75), 
      rgba(0, 0, 0, 0.75)
    ), url('./assets/animatedbackground.gif');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    color: white;
    padding: 30px 80px 10px;
 
    nav {
        display: flex;
        justify-content: space-between;
        margin-bottom: auto;

        #nav-logo {
            width: 50px;
        }

        #nav-menu {
            display: flex;
            background: #0F102D95;
            backdrop-filter: blur(10px);
            padding: 10px 30px;
            border: solid 1px var(--dark-turquoise);
            border-radius: 30px;
            transition: top 0.3s ease;
            /* animation: navMenuBehavior linear;
            animation-timeline: scroll(root);
            /* animation-range: entry 0% entry 100%; */
            /* animation-iteration-count: 1; */

            &.fixed {
                background: #0F102D70;
                backdrop-filter: blur(10px);
                position: fixed;
                height: 280px;
                z-index: 10;
                flex-direction: column;
                align-items: center;
                justify-content: space-around;
                right: 10px;
                top: 50%;
                padding: 40px 10px;
                transform: translateY(-50%);
                border-radius: 50px;
                opacity: 0.7;
                transition: opacity 0.3s ease-in-out;
                border: dotted 1px var(--dark-turquoise);

                &:hover {
                    opacity: 1;
                }

                .nav-menu-links {
                    margin-left: 0;
                    font-size: 14px;
                }
            }

            .nav-menu-links {
                color: var(--mid-blue);
                font-family: var(--secondary-font);
                font-size: 16px;
                font-weight: 600;
                text-decoration: none;
                margin-left: 10px;
                transition: filter 0.3s ease-out;

                &:first-child {
                    margin-left: 0;
                }

                &:hover {
                    filter: brightness(0) saturate(100%) invert(86%) sepia(55%) saturate(1212%) hue-rotate(112deg) brightness(99%) contrast(105%);
                }

                &.selected {
                    color: var(--cyan);

                    &:hover {
                        filter: none;
                    }
                }
            }
        }
    }

    #intro-text {
        font-family: var(--main-font);
        font-size: 30px;
        background-image: linear-gradient(160deg, var(--cyan) 0%, var(--slightly-darker-cyan) 30%, var(--lighter-blue) 100%);
        color: transparent;
        background-clip: text;

        span {
            display: block;
            font-weight: 400;
            font-size: 24px;
        }
    }

    #ofw {
        font-family: var(--secondary-font);
        font-size: 18px;
        font-weight: 500;
        margin-top: 15px;
        color: var(--light-blue);
        line-height: 1;

        span {
            animation: blip 1s ease-in-out alternate infinite;
            margin-right: 5px;
            font-weight: bold;
        }
    }

    #socials {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 15px;

        .socials-btn {
            position: relative;
            display: inline-flex;
            background: var(--dark-blue);
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: solid 1px var(--dark-turquoise);

            &::after {
                opacity: 0;
                position: absolute;
                min-width: 50px;
                width: auto;
                height: auto;
                background: var(--dark-blue);
                top: -9999px;
                left: translateX(height);
                border-radius: 15px;
                padding: 5px 15px;
                color: var(--cyan);
                font-family: var(--main-font);
                font-weight: bold;
                border: solid 1px var(--dark-turquoise);
                transition: opacity 0.3s ease-in-out;
            }

            &:nth-of-type(1)::after {
                content: "LinkedIn";
            }
            
            &:nth-of-type(2)::after {
                content: "Github";
            }
            
            &:nth-of-type(3)::after {
                content: "DeviantArt";
            }
            
            &:nth-of-type(4)::after {
                content: "CV";
            }

            &:hover {
                &::after {
                    top: -40px;
                    opacity: 1;
                }

                .socials-btn-logo {
                    filter: brightness(0) saturate(100%) invert(86%) sepia(55%) saturate(1212%) hue-rotate(112deg) brightness(99%) contrast(105%);
                }
            }

            .socials-btn-logo {
                width: 20px;
                height: 20px;
                transition: filter 0.5s ease;
            }

            &:nth-child(3), &:nth-child(4) {
                .socials-btn-logo {
                    width: 25px;
                    height: 25px;
                }
            }
        }
    }

    #scroll-icon {
       fill: url("#scroll-gradient");
       width: 40px;
       margin-top: 5px;
       align-self: center;
       animation: scrollIconAnimation 1s infinite alternate;
    }
}

#scroll-container {
    position: relative;
    overflow: clip;
    height: 200vh;
    background-color: #03030A;
    z-index: -2;

    &::before {
        z-index:-1;
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='150' viewBox='0 0 1600 800'%3E%3Cpath fill='%230080FF' d='M1102.5 734.8c2.5-1.2 24.8-8.6 25.6-7.5.5.7-3.9 23.8-4.6 24.5C1123.3 752.1 1107.5 739.5 1102.5 734.8zM1226.3 229.1c0-.1-4.9-9.4-7-14.2-.1-.3-.3-1.1-.4-1.6-.1-.4-.3-.7-.6-.9-.3-.2-.6-.1-.8.1l-13.1 12.3c0 0 0 0 0 0-.2.2-.3.5-.4.8 0 .3 0 .7.2 1 .1.1 1.4 2.5 2.1 3.6 2.4 3.7 6.5 12.1 6.5 12.2.2.3.4.5.7.6.3 0 .5-.1.7-.3 0 0 1.8-2.5 2.7-3.6 1.5-1.6 3-3.2 4.6-4.7 1.2-1.2 1.6-1.4 2.1-1.6.5-.3 1.1-.5 2.5-1.9C1226.5 230.4 1226.6 229.6 1226.3 229.1zM33 770.3C33 770.3 33 770.3 33 770.3c0-.7-.5-1.2-1.2-1.2-.1 0-.3 0-.4.1-1.6.2-14.3.1-22.2 0-.3 0-.6.1-.9.4-.2.2-.4.5-.4.9 0 .2 0 4.9.1 5.9l.4 13.6c0 .3.2.6.4.9.2.2.5.3.8.3 0 0 .1 0 .1 0 7.3-.7 14.7-.9 22-.6.3 0 .7-.1.9-.3.2-.2.4-.6.4-.9C32.9 783.3 32.9 776.2 33 770.3z'/%3E%3Cpath fill='%2300FFFF' d='M171.1 383.4c1.3-2.5 14.3-22 15.6-21.6.8.3 11.5 21.2 11.5 22.1C198.1 384.2 177.9 384 171.1 383.4zM596.4 711.8c-.1-.1-6.7-8.2-9.7-12.5-.2-.3-.5-1-.7-1.5-.2-.4-.4-.7-.7-.8-.3-.1-.6 0-.8.3L574 712c0 0 0 0 0 0-.2.2-.2.5-.2.9 0 .3.2.7.4.9.1.1 1.8 2.2 2.8 3.1 3.1 3.1 8.8 10.5 8.9 10.6.2.3.5.4.8.4.3 0 .5-.2.6-.5 0 0 1.2-2.8 2-4.1 1.1-1.9 2.3-3.7 3.5-5.5.9-1.4 1.3-1.7 1.7-2 .5-.4 1-.7 2.1-2.4C596.9 713.1 596.8 712.3 596.4 711.8zM727.5 179.9C727.5 179.9 727.5 179.9 727.5 179.9c.6.2 1.3-.2 1.4-.8 0-.1 0-.2 0-.4.2-1.4 2.8-12.6 4.5-19.5.1-.3 0-.6-.2-.8-.2-.3-.5-.4-.8-.5-.2 0-4.7-1.1-5.7-1.3l-13.4-2.7c-.3-.1-.7 0-.9.2-.2.2-.4.4-.5.6 0 0 0 .1 0 .1-.8 6.5-2.2 13.1-3.9 19.4-.1.3 0 .6.2.9.2.3.5.4.8.5C714.8 176.9 721.7 178.5 727.5 179.9zM728.5 178.1c-.1-.1-.2-.2-.4-.2C728.3 177.9 728.4 178 728.5 178.1z'/%3E%3Cg fill='%23FFF'%3E%3Cpath d='M699.6 472.7c-1.5 0-2.8-.8-3.5-2.3-.8-1.9 0-4.2 1.9-5 3.7-1.6 6.8-4.7 8.4-8.5 1.6-3.8 1.7-8.1.2-11.9-.3-.9-.8-1.8-1.2-2.8-.8-1.7-1.8-3.7-2.3-5.9-.9-4.1-.2-8.6 2-12.8 1.7-3.1 4.1-6.1 7.6-9.1 1.6-1.4 4-1.2 5.3.4 1.4 1.6 1.2 4-.4 5.3-2.8 2.5-4.7 4.7-5.9 7-1.4 2.6-1.9 5.3-1.3 7.6.3 1.4 1 2.8 1.7 4.3.5 1.1 1 2.2 1.5 3.3 2.1 5.6 2 12-.3 17.6-2.3 5.5-6.8 10.1-12.3 12.5C700.6 472.6 700.1 472.7 699.6 472.7zM740.4 421.4c1.5-.2 3 .5 3.8 1.9 1.1 1.8.4 4.2-1.4 5.3-3.7 2.1-6.4 5.6-7.6 9.5-1.2 4-.8 8.4 1.1 12.1.4.9 1 1.7 1.6 2.7 1 1.7 2.2 3.5 3 5.7 1.4 4 1.2 8.7-.6 13.2-1.4 3.4-3.5 6.6-6.8 10.1-1.5 1.6-3.9 1.7-5.5.2-1.6-1.4-1.7-3.9-.2-5.4 2.6-2.8 4.3-5.3 5.3-7.7 1.1-2.8 1.3-5.6.5-7.9-.5-1.3-1.3-2.7-2.2-4.1-.6-1-1.3-2.1-1.9-3.2-2.8-5.4-3.4-11.9-1.7-17.8 1.8-5.9 5.8-11 11.2-14C739.4 421.6 739.9 421.4 740.4 421.4zM261.3 590.9c5.7 6.8 9 15.7 9.4 22.4.5 7.3-2.4 16.4-10.2 20.4-3 1.5-6.7 2.2-11.2 2.2-7.9-.1-12.9-2.9-15.4-8.4-2.1-4.7-2.3-11.4 1.8-15.9 3.2-3.5 7.8-4.1 11.2-1.6 1.2.9 1.5 2.7.6 3.9-.9 1.2-2.7 1.5-3.9.6-1.8-1.3-3.6.6-3.8.8-2.4 2.6-2.1 7-.8 9.9 1.5 3.4 4.7 5 10.4 5.1 3.6 0 6.4-.5 8.6-1.6 4.7-2.4 7.7-8.6 7.2-15-.5-7.3-5.3-18.2-13-23.9-4.2-3.1-8.5-4.1-12.9-3.1-3.1.7-6.2 2.4-9.7 5-6.6 5.1-11.7 11.8-14.2 19-2.7 7.7-2.1 15.8 1.9 23.9.7 1.4.1 3.1-1.3 3.7-1.4.7-3.1.1-3.7-1.3-4.6-9.4-5.4-19.2-2.2-28.2 2.9-8.2 8.6-15.9 16.1-21.6 4.1-3.1 8-5.1 11.8-6 6-1.4 12 0 17.5 4C257.6 586.9 259.6 588.8 261.3 590.9z'/%3E%3Ccircle cx='1013.7' cy='153.9' r='7.1'/%3E%3Ccircle cx='1024.3' cy='132.1' r='7.1'/%3E%3Ccircle cx='1037.3' cy='148.9' r='7.1'/%3E%3Cpath d='M1508.7 297.2c-4.8-5.4-9.7-10.8-14.8-16.2 5.6-5.6 11.1-11.5 15.6-18.2 1.2-1.7.7-4.1-1-5.2-1.7-1.2-4.1-.7-5.2 1-4.2 6.2-9.1 11.6-14.5 16.9-4.8-5-9.7-10-14.7-14.9-1.5-1.5-3.9-1.5-5.3 0-1.5 1.5-1.5 3.9 0 5.3 4.9 4.8 9.7 9.8 14.5 14.8-1.1 1.1-2.3 2.2-3.5 3.2-4.1 3.8-8.4 7.8-12.4 12-1.4 1.5-1.4 3.8 0 5.3 0 0 0 0 0 0 1.5 1.4 3.9 1.4 5.3-.1 3.9-4 8.1-7.9 12.1-11.7 1.2-1.1 2.3-2.2 3.5-3.3 4.9 5.3 9.8 10.6 14.6 15.9.1.1.1.1.2.2 1.4 1.4 3.7 1.5 5.2.2C1510 301.2 1510.1 298.8 1508.7 297.2zM327.6 248.6l-.4-2.6c-1.5-11.1-2.2-23.2-2.3-37 0-5.5 0-11.5.2-18.5 0-.7 0-1.5 0-2.3 0-5 0-11.2 3.9-13.5 2.2-1.3 5.1-1 8.5.9 5.7 3.1 13.2 8.7 17.5 14.9 5.5 7.8 7.3 16.9 5 25.7-3.2 12.3-15 31-30 32.1L327.6 248.6zM332.1 179.2c-.2 0-.3 0-.4.1-.1.1-.7.5-1.1 2.7-.3 1.9-.3 4.2-.3 6.3 0 .8 0 1.7 0 2.4-.2 6.9-.2 12.8-.2 18.3.1 12.5.7 23.5 2 33.7 11-2.7 20.4-18.1 23-27.8 1.9-7.2.4-14.8-4.2-21.3l0 0C347 188.1 340 183 335 180.3 333.6 179.5 332.6 179.2 332.1 179.2zM516.3 60.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C517.3 60.4 516.8 60.8 516.3 60.8zM506.1 70.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C506.4 70.5 506.2 70.5 506.1 70.5zM494.1 64.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C494.7 64.3 494.4 64.4 494.1 64.4zM500.5 55.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C500.9 55.3 500.7 55.3 500.5 55.3zM506.7 55c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C507.4 54.8 507.1 55 506.7 55zM1029.3 382.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C1030.3 382.4 1029.8 382.8 1029.3 382.8zM1019.1 392.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C1019.4 392.5 1019.2 392.5 1019.1 392.5zM1007.1 386.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C1007.7 386.3 1007.4 386.4 1007.1 386.4zM1013.5 377.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C1013.9 377.3 1013.7 377.3 1013.5 377.3zM1019.7 377c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C1020.4 376.8 1020.1 377 1019.7 377zM1329.7 573.4c-1.4 0-2.9-.2-4.5-.7-8.4-2.7-16.6-12.7-18.7-20-.4-1.4-.7-2.9-.9-4.4-8.1 3.3-15.5 10.6-15.4 21 0 1.5-1.2 2.7-2.7 2.8 0 0 0 0 0 0-1.5 0-2.7-1.2-2.7-2.7-.1-6.7 2.4-12.9 7-18 3.6-4 8.4-7.1 13.7-8.8.5-6.5 3.1-12.9 7.4-17.4 7-7.4 18.2-8.9 27.3-10.1l.7-.1c1.5-.2 2.9.9 3.1 2.3.2 1.5-.9 2.9-2.3 3.1l-.7.1c-8.6 1.2-18.4 2.5-24 8.4-3 3.2-5 7.7-5.7 12.4 7.9-1 17.7 1.3 24.3 5.7 4.3 2.9 7.1 7.8 7.2 12.7.2 4.3-1.7 8.3-5.2 11.1C1335.2 572.4 1332.6 573.4 1329.7 573.4zM1311 546.7c.1 1.5.4 3 .8 4.4 1.7 5.8 8.7 14.2 15.1 16.3 2.8.9 5.1.5 7.2-1.1 2.7-2.1 3.2-4.8 3.1-6.6-.1-3.2-2-6.4-4.8-8.3C1326.7 547.5 1317.7 545.6 1311 546.7z'/%3E%3C/g%3E%3C/svg%3E");
        background-attachment: fixed;
        background-position: center;
        /* animation-range: cover 0% cover 100%; */
        animation: scrollZoom linear;
        animation-timeline: view();
        animation-iteration-count: 1;
        transform-origin: center;
        will-change: transform;
    }
   
    &::after {
        position: absolute;
        content: '';
        height: 100%;
        width: 100%;
        background: linear-gradient(
            to bottom,
            #03030A 0%,
            transparent 20%,
            transparent 80%,
            #03030A 100%
        );
        z-index: 0;
    }
}

#about {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100vh;
    height: auto;
    background: linear-gradient(180deg, #03030A 0%, #0D1117 100%);
    padding: 100px 80px 0;
    view-timeline-name: --parent-view;
    view-timeline-axis: block;

    & > * {
        animation: aboutFadeIn linear;
        animation-timeline: --parent-view;
        animation-range: entry 0% entry 100%;
        animation-iteration-count: 1;
    }

    .title:nth-child(3) {
        margin-top: 40px;
    }

    .title {
        background-image: linear-gradient(190deg, var(--cyan) 0%, var(--slightly-darker-cyan) 10%, var(--lighter-blue) 100%);
    }

    .about-section-text {
        font-family: var(--secondary-font);
        font-size: 18px;
        color: var(--slightly-darker-cyan);
        margin-top: 10px;
    }

    #project-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        padding: 20px 0;
        width: 100%;

        .card {
            --angle1: 0deg;
            --angle2: 30deg;
            --angle3: 80deg;
            --angle4: 120deg;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            /* width: 20%; */
            height: auto;
            padding: 30px 25px;
            background-origin: border-box;
            background-clip: padding-box, border-box;
            border: solid 1px transparent;
            border-radius: 10px;
            animation: cardRotate 10s infinite;
            text-align: center;

            &:nth-of-type(1) {
                background-image: linear-gradient(to right, var(--dark-blue), var(--dark-blue)), 
                
                conic-gradient(from var(--angle1), var(--cyan), var(--slightly-darker-cyan), var(--lighter-blue), var(--light-blue), var(--cyan), var(--slightly-darker-cyan), var(--lighter-blue), var(--light-blue));
            }

            &:nth-of-type(2) {
                background-image: linear-gradient(to right, var(--dark-blue), var(--dark-blue)), 
                
                conic-gradient(from var(--angle2), var(--cyan), var(--slightly-darker-cyan), var(--lighter-blue), var(--light-blue), var(--cyan), var(--slightly-darker-cyan), var(--lighter-blue), var(--light-blue));
            }

            &:nth-of-type(3) {
                background-image: linear-gradient(to right, var(--dark-blue), var(--dark-blue)), 
                
                conic-gradient(from var(--angle3), var(--cyan), var(--slightly-darker-cyan), var(--lighter-blue), var(--light-blue), var(--cyan), var(--slightly-darker-cyan), var(--lighter-blue), var(--light-blue));
            }

            &:nth-of-type(4) {
                background-image: linear-gradient(to right, var(--dark-blue), var(--dark-blue)), 
                
                conic-gradient(from var(--angle4), var(--cyan), var(--slightly-darker-cyan), var(--lighter-blue), var(--light-blue), var(--cyan), var(--slightly-darker-cyan), var(--lighter-blue), var(--light-blue));
            }

            &:nth-of-type(2) .card-title, &:nth-of-type(3) .card-title {
                font-size: 20px;
            }

            .card-image {
                width: 200px;
                height: 300px;
                object-fit: cover;
                border: solid 1px var(--light-blue);
            }

            .card-date {
                font-family: var(--secondary-font);
                font-size: 12px;
                font-weight: 600;
                color: var(--light-blue);
                margin-top: 10px;
            }

            .card-title {
                font-family: var(--main-font);
                font-size: 24px;
                font-weight: 500;
                color: var(--cyan);
                margin-top: 10px;
            }

            .card-role {
                font-family: var(--secondary-font);
                font-size: 14px;
                font-style: italic;
                font-weight: 500;
                color: var(--lighter-blue);
                margin-top: 10px;
            }

            .card-link {
                font-family: var(--secondary-font);
                font-size: 12px;
                font-weight: 700;
                text-decoration: none;
                color: var(--slightly-darker-cyan);
                border: solid 1px var(--dark-turquoise);
                border-radius: 50px;
                padding: 5px 15px;
                margin-top: 10px;
                overflow: hidden;
                transition: all 0.7s ease;

                &:hover {
                    text-shadow: 0px 0px 10px rgba(0, 220, 255, 0.7);
                }
            }
        }
    }    
}

#projects {
    width: 100%;
    min-height: 100vh;
    background-color: #0d1117;
    background-image: linear-gradient(
            to bottom,
            #0d1117 0%,
            transparent 30%,
            transparent 90%,
            #0d1117 100%
        ), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%230096ff' fill-opacity='0.07' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V2h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L297.41 50H277.9zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2H41.41L66 216.59V242H53.9zm150.2 14a5 5 0 1 1 0 2H96v-56.6L56.6 162H37.9a5 5 0 1 1 0-2h19.5L98 200.6V256h106.1zm-150.2 2a5 5 0 1 1 0-2H80v-46.59L48.59 178H21.9a5 5 0 1 1 0-2H49.41L82 208.59V258H53.9zM34 39.8v1.61L9.41 66H0v-2h8.59L32 40.59V0h2v39.8zM2 300.1a5 5 0 0 1 3.9 3.9H3.83A3 3 0 0 0 0 302.17V256h18v48h-2v-46H2v42.1zM34 241v63h-2v-62H0v-2h34v1zM17 18H0v-2h16V0h2v18h-1zm273-2h14v2h-16V0h2v16zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1A5.02 5.02 0 0 1 6 97a5 5 0 0 1-6 4.9v-2.07a3 3 0 1 0 0-5.66V92.1zM80 272h2v32h-2v-32zm37.9 32h-2.07a3 3 0 0 0-5.66 0h-2.07a5 5 0 0 1 9.8 0zM5.9 0A5.02 5.02 0 0 1 0 5.9V3.83A3 3 0 0 0 3.83 0H5.9zm294.2 0h2.07A3 3 0 0 0 304 3.83V5.9a5 5 0 0 1-3.9-5.9zm3.9 300.1v2.07a3 3 0 0 0-1.83 1.83h-2.07a5 5 0 0 1 3.9-3.9zM97 100a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-48 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 96a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-144a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM49 36a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM33 68a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 240a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm80-176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm112 176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 180a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 84a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'%3E%3C/path%3E%3C/svg%3E");
    padding: 140px 80px 40px;

    .projects-text {
        font-family: var(--secondary-font);
        font-size: 20px;
        color: var(--slightly-darker-cyan);
        margin-top: 5px;

        &:last-of-type {
            color: var(--cyan);
            font-size: 22px;
            font-weight: 500;
            text-align: center;
            margin-top: 70px;

            a {
                font-weight: 700;
                text-decoration: none;
                color: inherit;

                &:hover {
                    text-decoration: underline;
                }
            }
        }
    }

    .projects-container {
        display: flex;
        flex-direction: column;
        counter-reset: projects-num 0;
        /* margin-top: 40px; */

        .project {
            display: flex;
            /* flex-direction: column; */
            /* justify-content: center; */
            position: relative;
            height: 240px;
            width: 70%;
            gap: 20px;
            background: var(--dark-blue);
            margin-top: 40px;
            padding: 30px;
            border: solid 1px var(--dark-turquoise);
            border-radius: 15px;
            counter-increment: projects-num 1;

            &:nth-of-type(2) {
                align-self: flex-end;

                &::after {
                    right: initial;
                    left: calc(-70% + 400px);
                }
            }

            &::after {
                content: counter(projects-num);
                position: absolute;
                top: 0;
                right: calc(-70% + 400px);
                font-family: var(--main-font);
                font-size: 180px;
                color: var(--lighter-blue);
                opacity: 0.4;
            } 

            /* .project-image {
                width: 20px;
            } */

            .project-info {
                .project-title {
                    font-family: var(--main-font);
                    color: var(--cyan);
                    font-size: 30px;
                    font-weight: 600;
                }

                .project-description, .project-technologies-text {
                    margin-top: 10px;
                    font-family: var(--secondary-font);
                    color: var(--light-blue);
                    font-size: 16px;
                }

                .project-technologies-text {
                    font-weight: 700;
                }

                .project-technologies {
                    display: flex;

                    .technology {
                        font-family: var(--secondary-font);
                        font-size: 12px;
                        font-weight: 700;
                        text-decoration: none;
                        color: var(--slightly-darker-cyan);
                        border: solid 1px var(--dark-turquoise);
                        border-radius: 50px;
                        padding: 5px 15px;
                        margin-top: 10px;
                        overflow: hidden;
                        text-shadow: 0px 0px 10px rgba(0, 220, 255, 0.7);
                    }
                }
            }
        }
    }
}

#skills {
    background: #0d1117;
    padding: 100px 80px;
    color: #fff;

    .skills-sub-title {
        margin-top: 50px;
        color: var(--slightly-darker-cyan);
        font-family: var(--main-font);
        font-size: 32px;
        font-weight: 500;

        &:nth-child(7) {
            margin-top: 60px;
        }
    }

    .category, #blanchard-cert {
        font-family: var(--main-font);
        color: var(--lighter-blue);
        font-size: 20px;
        font-weight: 700;
        margin-top: 30px;
    }

    .skills-container {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 10px;

        &:nth-child(8) {
            margin-top: 20px;
        }

        .skill {
            font-family: var(--secondary-font);
            font-weight: 700;
            color: var(--lighter-blue);
            background: var(--dark-blue);
            border: solid 1px var(--dark-turquoise);
            border-radius: 5px;
            padding: 5px 30px;
        }
    }

    #blanchard-cert {
        display: inline-flex;
        align-items: center;
        margin-top: 25px;
        text-decoration: none;
        transition: color 0.3s ease-in-out;

        &:hover {
            color: var(--cyan);
        }

        span {
            display: inline-block;
            width: 80px;
            height: 80px;
            background: url("./assets/blanchard-badge.png");
            background-size: cover;
        }
    }

    .skills-text {
        margin-top: 40px;
        font-family: var(--secondary-font);
        color: var(--lighter-blue);
        font-size: 20px;
        font-weight: 500;
    }

    #deviantart-link {
        margin-top: 20px;
        font-family: var(--secondary-font);
        color: var(--cyan);
        font-size: 20px;
        font-weight: 500;

        a {
            text-decoration: none;
            color: inherit;
            font-weight: 700;

            &:hover {
                text-decoration: underline;
            }
        }
    }
}

#contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px;
    background-image: linear-gradient(
            to bottom,
            #0d1117 0%,
            transparent 30%,
            transparent 75%,
            #0d1117 100%
        ), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3Crect stroke='%230D1125' stroke-width='0.9' width='1' height='1' id='s'/%3E%3Cpattern id='a' width='3' height='3' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(10.8) translate(-907.41 -680.56)'%3E%3Cuse fill='%23242426' href='%23s' y='2'/%3E%3Cuse fill='%23242426' href='%23s' x='1' y='2'/%3E%3Cuse fill='%23333334' href='%23s' x='2' y='2'/%3E%3Cuse fill='%23333334' href='%23s'/%3E%3Cuse fill='%233f3f3f' href='%23s' x='2'/%3E%3Cuse fill='%233f3f3f' href='%23s' x='1' y='1'/%3E%3C/pattern%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(10.8) translate(-907.41 -680.56)'%3E%3Cg fill='%23484849'%3E%3Cuse href='%23s'/%3E%3Cuse href='%23s' y='5' /%3E%3Cuse href='%23s' x='1' y='10'/%3E%3Cuse href='%23s' x='2' y='1'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='8'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='5' y='2'/%3E%3Cuse href='%23s' x='5' y='6'/%3E%3Cuse href='%23s' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='h' width='5' height='13' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(10.8) translate(-907.41 -680.56)'%3E%3Cg fill='%23484849'%3E%3Cuse href='%23s' y='5'/%3E%3Cuse href='%23s' y='8'/%3E%3Cuse href='%23s' x='1' y='1'/%3E%3Cuse href='%23s' x='1' y='9'/%3E%3Cuse href='%23s' x='1' y='12'/%3E%3Cuse href='%23s' x='2'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='2'/%3E%3Cuse href='%23s' x='3' y='6'/%3E%3Cuse href='%23s' x='3' y='11'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='4' y='10'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='17' height='13' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(10.8) translate(-907.41 -680.56)'%3E%3Cg fill='%23515151'%3E%3Cuse href='%23s' y='11'/%3E%3Cuse href='%23s' x='2' y='9'/%3E%3Cuse href='%23s' x='5' y='12'/%3E%3Cuse href='%23s' x='9' y='4'/%3E%3Cuse href='%23s' x='12' y='1'/%3E%3Cuse href='%23s' x='16' y='6'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='d' width='19' height='17' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(10.8) translate(-907.41 -680.56)'%3E%3Cg fill='%2303030B'%3E%3Cuse href='%23s' y='9'/%3E%3Cuse href='%23s' x='16' y='5'/%3E%3Cuse href='%23s' x='14' y='2'/%3E%3Cuse href='%23s' x='11' y='11'/%3E%3Cuse href='%23s' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23585859'%3E%3Cuse href='%23s' x='3' y='13'/%3E%3Cuse href='%23s' x='9' y='7'/%3E%3Cuse href='%23s' x='13' y='10'/%3E%3Cuse href='%23s' x='15' y='4'/%3E%3Cuse href='%23s' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='e' width='47' height='53' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(10.8) translate(-907.41 -680.56)'%3E%3Cg fill='%2300DCFF'%3E%3Cuse href='%23s' x='2' y='5'/%3E%3Cuse href='%23s' x='16' y='38'/%3E%3Cuse href='%23s' x='46' y='42'/%3E%3Cuse href='%23s' x='29' y='20'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='f' width='59' height='71' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(10.8) translate(-907.41 -680.56)'%3E%3Cg fill='%2300DCFF'%3E%3Cuse href='%23s' x='33' y='13'/%3E%3Cuse href='%23s' x='27' y='54'/%3E%3Cuse href='%23s' x='55' y='55'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='g' width='139' height='97' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(10.8) translate(-907.41 -680.56)'%3E%3Cg fill='%2300DCFF'%3E%3Cuse href='%23s' x='11' y='8'/%3E%3Cuse href='%23s' x='51' y='13'/%3E%3Cuse href='%23s' x='17' y='73'/%3E%3Cuse href='%23s' x='99' y='57'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23h)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23d)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23e)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23f)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E"), linear-gradient(#03030A, #03030A);
    /* background-attachment: fixed; */
    background-size: cover;

    .title, #contact-sub-title {
        align-self: center;
    }

    #contact-sub-title {
        margin-top: 10px;
        font-family: var(--secondary-font);
        font-size: 16px;
        color: var(--slightly-darker-cyan);
    }

    #contact-text {
        align-self: center;
        font-family: var(--secondary-font);
        font-size: 20px;
        color: var(--cyan);
        margin-top: 60px;
        
        span {
            font-weight: 600;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            font-weight: 700;
        }
    }

    #contact-area {
        display: flex;
        margin-top: 60px;
        font-family: var(--secondary-font);

        #contact-form {
            display: flex;
            margin-top: 20px;
            flex-wrap: wrap;
            width: 60%;

            .form-container {
                display: inline-flex;
                flex-direction: column;
                flex-basis: calc(50% - 5px);

                &:nth-child(2) {
                    margin-left: 10px;
                }

                &:nth-child(3) {
                    margin-top: 20px;
                    flex-basis: 100%;

                    textarea {
                        height: 200px;
                        margin-top: 10px;
                        border-radius: 5px;
                        padding: 5px 5px;
                        vertical-align: top;
                        background: var(--dark-blue);
                        border: solid 1px var(--dark-turquoise);
                        color: var(--lighter-blue);
                    }
                }
            }

            
            label:has(+ input:focus), label:has(+ textarea:focus) {
                color: var(--cyan);
            }

            input:not([type="submit"]):focus, textarea:focus {
                transition: border 0.3s ease-in-out;
                outline: solid 1px var(--lighter-blue);
            } 

            label {
                color: var(--mid-blue);
                font-weight: 600;
                font-size: 18px;
                transition: color 0.4s ease-in-out;
            }

            input, textarea {
                font-family: var(--secondary-font);
            }

            input {
                margin-top: 10px;
                background: var(--dark-blue);
                border: solid 1px var(--dark-turquoise);
                color: var(--lighter-blue);

                &[type="text"] {
                    height: 30px;
                    border-radius: 5px;
                    padding: 0px 5px;
                    vertical-align: top;
                }

                &[type="submit"] {
                    margin-top: 20px;
                    height: 30px;
                    border: solid 1px var(--mid-blue);
                    border-radius: 30px;
                    font-weight: 700;
                    flex-basis: 100%;
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        cursor: pointer;
                        color: var(--cyan);
                        border: solid 1px var(--lighter-blue);
                    }
                }
            }

            .h-captcha {
                margin-top: 20px;
            }
        }
    }

    #contact-info {
        width: 40%;
        padding: 20px 0px 0 60px;

        #contact-info-title {
            color: var(--mid-blue);
            font-weight: 600;
            font-size: 18px;
        }

        .contact-info-option {
            display: flex;
            margin-top: 20px;
            color: var(--light-blue);

            &:nth-child(2) {
                span {
                    background: url("./assets/phone-icon.svg") no-repeat;
                }
            }

            &:nth-child(3) {
                span {
                    background: url("./assets/email-icon.svg")  no-repeat;
                }
            }

            &:nth-child(4) {
                span {
                    background: url("./assets/linkedin-logo.svg") no-repeat;
                    background-size: 70%;
                    background-position: center;
                }
            }

            &:nth-child(2) span, &:nth-child(3) span { /* created this selection instead of only "span" as background-specificity has higher priority here */
                background-size: 85%;
                background-position: center;
            }

            span {
                display: inline-block;
                width: 25px;
                height: auto;
                margin-right: 5px;
            }
        }
    }
}

footer {
    background: #0d1117;
    padding: 100px 0 50px;
    text-align: center;

    #footer-logo {
        width: 80px;
    }

    #footer-text {
        font-family: var(--main-font);
        font-weight: 600;
        font-size: 14px;
        color: var(--mid-blue);
    }
}

@media screen and (max-width: 1350px) {
    #about #project-cards .card {
        padding: 25px 15px;

        .card-image {
            width: 150px;
            height: 250px;
        }
    }

    #projects {
        .projects-container {
            .project {
                width: 80%;
                height: 260px;

                .project-info {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                }
            }
        }
    }
}

@media screen and (max-width: 1220px) {
    #about #project-cards {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        gap: 20px 0px;

        .card {
            width: 85%;
        }
    }

    #projects {
        .projects-container {
            .project {
                width: 100%;
                height: 260px;

                &::after {
                    content: none;
                }

                .project-info {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                }
            }
        }
    }
}

@media screen and (max-width: 1080px) {
    #about #project-cards {
        grid-template-columns: repeat(2, 1fr);

        .card {
            width: 65%;
        }
    }

    #projects .projects-container .project {
        padding: 15px;
        height: 220px;

        .project-image {
            display: none;
        }

        /* .project-info {
            .project-title {
                text-align: center
            }
        } */
    }
}

@media screen and (max-width: 900px) {
    #landing, #about, #projects, #skills, #contact {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* #projects {
        .project .project-image {
            width: 400px;
            height: 120px;
            aspect-ratio: 1;
        }   
    } */
}

@media screen and (max-width: 820px) {
    #about #project-cards {
        .card {
            width: 80%;
        }
    }
}

@media screen and (max-width: 720px) {
    #landing {
        nav #nav-logo {
            width: 40px;
        }

        #intro-text {
            font-size: 22px;

            span {
                font-size: 18px;
            }
        }

        #ofw {
            font-size: 16px;
        }

        #socials {
            gap: 5px;

            .socials-btn {
                width: 30px;
                height: 30px;

                .socials-btn-logo {
                    width: 15px;
                    height: 15px;
                }

                &:nth-child(3), &:nth-child(4) {
                    .socials-btn-logo {
                        width: 20px;
                        height: 20px;
                    }
                }
            }
        }

        #scroll-icon {
            width: 25px;
        }
    }

    #about {
        #project-cards {
            .card {
                width: 90%;
            }
        }

        .title {
            font-size: 34px;
        }

        .about-section-text {
            font-size: 16px;
        }
    }

    #projects {
        .title {
            font-size: 34px;
        }

        .projects-text {
            font-size: 16px;

            &:last-of-type {
                font-size: 18px;
            }
        }

        .projects-container .project {
            height: auto;

            .project-info {
                .project-title {
                    font-size: 24px;
                }

                .project-description, .project-technologies-text{
                    font-size: 14px;
                }

                .project-technologies {
                    .technology {
                        font-size: 10px;
                        padding: 4px 10px;
                    }
                }
            }   
        }
    }

    #skills {
        .title {
            font-size: 36px;
        }

        .skills-sub-title {
            font-size: 24px;
        }

        .category, #blanchard-cert {
            font-size: 15px;
        }

        .skills-container {
            .skill {
                font-size: 13px;
                padding: 5px 20px;
            }
        }

        .skills-text, #deviantart-link {
            font-size: 16px;
        }

        #blanchard-cert span {
            width: 60px;
            height: 60px;
        }
    }

    #contact {
        .title {
            font-size: 36px;
        }

        #contact-sub-title {
            font-size: 14px;
        }

        #contact-text {
            font-size: 18px;
        }

        #contact-area {
            flex-direction: column;

            #contact-form, #contact-info {
                width: 100%;
            }

            #contact-info {
                display: flex;
                flex-direction: column;
                align-items: center;
                margin-top: 40px;
                padding: 0;
            }
        }
    }
}

@media screen and (max-width: 630px) {
    #about {
        .title {
            font-size: 30px;
        }

        .about-section-text {
            font-size: 15px;
        }

        #project-cards {
            grid-template-columns: 260px;
            justify-content: start;

            .card {
                width: 100%;
            }
        }
    }

    #scroll-container::before {
        animation: scrollZoomMobile linear;
    }

    #projects {
        .title {
            font-size: 30px;
        }

        .projects-text {
            font-size: 15px;

            &:last-of-type {
                font-size: 16px;
            }
        }

        .projects-container .project {
            overflow-x: auto;
            
            .project-info {
                .project-title {
                    font-size: 20px;
                }

                .project-description, .project-technologies-text{
                    font-size: 11px;
                }

                .project-technologies {
                    .technology {
                        font-size: 9px;
                        padding: 4px 10px;
                    }
                }
            }
        }   
    }   
    
    #skills {
        .title {
            font-size: 30px;
        }

        .skills-sub-title {
            font-size: 20px;
            margin-top: 30px;
        }

        .category, #blanchard-cert {
            font-size: 14px;
        }

        .skills-container {
            .skill {
                font-size: 12px;
                padding: 3px 15px;
            }
        }

        .skills-text, #deviantart-link {
            font-size: 15px;
        }

        #blanchard-cert span {
            width: 50px;
            height: 50px;
        }
    }

    #contact {
        .title {
            font-size: 30px;
        }

        #contact-sub-title {
            font-size: 12px;
            margin-top: 3px;
        }

        #contact-text {
            font-size: 17px;
        }
    }
}

@media screen and (max-width: 450px) {
    #contact #contact-area #contact-form .form-container {
        flex-basis: 100%;

        &:nth-child(2) {
            margin-left: 0;
            margin-top: 20px;
        }
    }
}

@media screen and (max-width: 400px) {
    #landing, #about, #projects, #skills, #contact {
        padding-left: 20px;
        padding-right: 20px;
    }

    #landing {
        nav #nav-logo {
            width: 30px;
        }

        #intro-text {
            font-size: 18px;

            span {
                font-size: 16px;
            }
        }

        #ofw {
            font-size: 14px;
        }

        #socials {
            .socials-btn {
                width: 20px;
                height: 20px;

                .socials-btn-logo {
                    width: 10px;
                    height: 10px;
                }

                &:nth-child(3), &:nth-child(4) {
                    .socials-btn-logo {
                        width: 15px;
                        height: 15px;
                    }
                }
            }
        }

        #scroll-icon {
            width: 20px;
            margin-top: 15px;
        }
    }

    #contact-area .h-captcha iframe {
        max-width: 100%;
    }
}

/* Some SVG patterns are from SVGBackgrounds.com */