/* Fonts */
@font-face {
    font-family: OpenSans-italic;
    src: url(../fonts/OpenSans-Italic.ttf);
}

@font-face {
    font-family: OpenSans-light;
    src: url(../fonts/OpenSans-Light.ttf);
}

@font-face {
    font-family: OpenSans-regular;
    src: url(../fonts/OpenSans-Regular.ttf);
}

@font-face {
    font-family: Roboto-light;
    src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: Roboto-regular;
    src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: SourceSansPro-bold;
    src: url(../fonts/SourceSansPro-Bold.ttf);
}

/* Animations */
@keyframes load {
    0% {opacity: 0.25;}
    25% {opacity: 0.45;}
    50% {opacity: 0.65;}
    75% {opacity: 0.85;}
    100% {opacity: 1;}
}

/* Global */
* {
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

p, h1, h2, img {
    animation-name: load;
    animation-duration: 1s;
    animation-timing-function: linear;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-container {
    display: flex;
}

.nav-bar {
    background-color: #f6f5f2;
    box-shadow: 0px -5px 25px 2px #ffffff;
    display: flex;
    height: 50px;
    justify-content: flex-end;
    position: fixed;
    transition: 1s ease;
    width: 100%;
    z-index: 4;
}
.nav-btn {
    align-items: center;
    background-color: #f6f5f2;
    border: none;
    cursor: pointer;
    gap: 5px;
    justify-content: center;
    margin: 5px;
    padding: 5px;
}
.nav-btn-icon {
    background-color: #171717;
    border-radius: 25px;
    height: 6px;
    transition: 0.5s;
    width: 40px;
}
.open div:nth-child(1) {
    transform: rotate(45deg) translate(0px, 15px);
}
.open div:nth-child(2) {
    opacity: 0;
}
.open div:nth-child(3) {
    transform: rotate(-45deg) translate(0px, -15px);
}

.nav-menu {
    align-items: center;
    background-color: rgba(23, 23, 23, 0.8);
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100vh;
    position: fixed;
    right: -100%;
    transition: 0.5s ease;
    z-index: 3;
}
.nav-menu a {
    color: #ffffff;
    font: 2rem OpenSans-regular;
    text-decoration: none;
    padding: 0px 50px 0px 300px;
}
.nav-menu a:nth-child(1) {
    margin-top: 100px;
}

.hover-nav {
    align-items: center;
    background-color: #f6f5f2;
    border-radius: 50px;
    bottom: 5%;
    box-shadow: 0px 0px 10px 1px #ffffff;
    gap: 2em;
    height: 50px;
    left: 0%;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    right: 0%;
    transition: 1s ease;
    width: max-content;
    z-index: 2;
}
.hover-nav a {
    align-items: center;
    border-radius: 50px;
    color: #000000;
    display: flex;
    font: 1.2rem OpenSans-regular;
    height: 50px;
    padding: 0px 20px;
    text-decoration: none;
    transition: 0.5s linear;
}

/* Home */
.home {
    align-items: center;
    background-color: #171717;
    height: 100vh;
    justify-content: center;
}
.home img {
    margin-top: 5%;
    width: 70%;
}
.home h1 {
    color: #ffffff;
    font: 2.5rem SourceSansPro-bold;
    margin-left: 60%;
}

/* About */
.hidden {
    opacity: 0;
    transition: all 2s;
}
.show {
    opacity: 1;
}
.off-screen {
    filter: blur(5px);
    opacity: 0;
    transform: translateX(-110%);
    transition: all 1.8s;
}
.on-screen {
    filter: blur(0px);
    opacity: 1;
    transform: translateX(0%);
}

.about {
    background-color: #f6f5f2;
    height: 100vh;
}
.about > * {
    flex-basis: 100%;
    margin: 100px 50px 0px 50px;
}

.promo-box {
    position: relative;
}

.promo-box h1 {
    font: 2.5rem SourceSansPro-bold;
    position: relative;
    width: 80%;
    z-index: 1;
}
.promo-box a {
    background-color: #f6b037;
    border-radius: 50px;
    box-shadow: 5px 5px 20px 1px #000000;
    color: #000000;
    font: 1.2rem OpenSans-regular;
    padding: 0.8em 1.5em;
    position: relative;
    text-decoration: none;
    top: 10%;
    z-index: 1;
}

#model-box {
    bottom: 0%;
    left: 0%;
    position: absolute;
    width: 100%;
}
#laptop {
    bottom: 0%;
    left: -12%;
    width: 99%;
    position: absolute;
    z-index: 1;
}
#smart-phone {
    bottom: 0%;
    left: 70%;
    position: absolute;
    width: 40%;
}

.info-box {
    gap: 15px;
}
.info-box h1 {
    font: 2.5rem Roboto-regular;
    margin-bottom: 1em;
}
.info-box p {
    font: 1.4rem Roboto-light;
    text-align: right;
    text-indent: 50px;
    margin-left: 30%;
    width: 70%;
}

/* Contact */
.contact {
    align-items: center;
    background-color: #171717;
    color: #ffffff;
    height: 100vh;
}
.contact h1 {
    color: #ffffff;
    font: 2.5rem SourceSansPro-bold;
    margin-top: 8%;
}
.contact > section {
    height: 800px;
}

.thank-you-box {
    align-items: center;
    justify-content: center;
    width: 50%;
}
.thank-you-box p {
    font: 1.4rem Roboto-light;
    text-align: center;
    width: 60%;
}
.thank-you-box a {
    color: #ffffff;
}
.thank-you-box > section {
    align-items: center;
    gap: 1em;
}
.thank-you-box > section img {
    margin-top: 10px;
    width: 50px;
}
.thank-you-box > section a {
    color: #ffffff;
    font: 1.4rem OpenSans-regular;
}

.divider {
    border-right: 2px solid #f6f5f2;
    height: 350px;
    margin-top: 5%;
}

.other-links-box {
    align-items: center;
    gap: 25px;
    justify-content: center;
    width: 50%;
}
.other-links-box p:nth-child(1) {
    font: 2.5rem Roboto-regular;
}
.other-links-box p:nth-child(2) {
    font: 1.4rem Roboto-light;
}
.other-links-box > section {
    gap: 50px;
}
.other-links-box a {
    text-decoration: none;
}
.other-links-box i {
    color: #f6f5f2;
    font-size: 55px;
}

footer {
    margin-top: auto;
    position: relative;
    z-index: 0;
}

.desktop-img {
    display: block;
    height: auto;
    position: relative;
    top: 5px;
    width: 100%;
}

.mobile-img {
    display: none;
    height: auto;
    position: relative;
    top: 5px;
    width: 100%;
}

footer p {
    bottom: 2%;
    color: #ffffff;
    font: 1rem Roboto-light;
    left: 0%;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0%;
    text-align: center;
    z-index: 1;
}

/* Portfolio Showcase */
.portfolio-nav-bar {
    background-color: #f6f5f2;
    box-shadow: 0px 0px 10px 1px #000000;
    display: flex;
    height: 50px;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 4;
}
.bread-crumbs {
    display: flex;
    gap: 5px;
    margin-left: 5px;
    margin-top: 20px;
}
.bread-crumbs li {
    list-style: none;
}
.bread-crumbs a {
    color: #000000;
    font-family: OpenSans-italic;
}

.portfolio-body {
    align-items: center;
    background-color: #f6f5f2;
    gap: 50px;
}

.open-letter {
    margin-top: 8%;
    width: 50%;
}
.open-letter h1 {
    font: 2.5rem SourceSansPro-bold;
    margin-bottom: 40px;
    text-align: center;
}
.open-letter p {
    font: 1.4rem Roboto-light;
    text-indent: 50px;
}
.open-letter :nth-child(3) {
    margin-top: 20px;
    text-indent: 0px;
}
.open-letter :nth-child(4) {
    text-indent: 0px;
}

.portfolio-project > * {
    flex-basis: 100%;
}
.portfolio-project img {
    width: 50%;
}

.project-info {
    padding: 50px 25px
}
.project-info:nth-child(odd) > * {
    justify-content: flex-end;
    text-align: end;
}
.project-info h2 {
    font: 2.0rem Roboto-regular;
    margin-bottom: 40px;
}
.project-info p {
    font: 1.2rem Roboto-light;
}
.project-info p:nth-child(2) {
    margin-bottom: 40px;
    text-indent: 25px;
}
.project-info i {
    font-size: 40px;
    margin: 5px;
}

.btns {
    gap: 25px;
    margin-top: 40px;
}
.btns img {
    width: 10%;
}
.btns a {
    align-items: center;
    border-radius: 55px;
    display: flex;
    font: 1.2rem OpenSans-regular;
    justify-content: space-evenly;
    padding: 0.2em 0.5em;
    text-decoration: none;
}

.learn-more-btn {
    border: 2px solid #000000;
    color: #000000;
}

.view-project-btn {
    border: 2px solid #f6b037;
    color: #f6b037;
}

.portfolio-footer p {
    color: #000000;
}

/* Portfolio Project Page */
.project-nav-bar {
    background-color: #f6f5f2;
    box-shadow: 0px 0px 10px 1px #ffffff;
    display: flex;
    height: 50px;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 4;
}

.project-body {
    background-color: #171717;
    gap: 15px;
    width: 100%;
}
.project-body > section {
    margin-left: 50px;
}
.project-body h2 {
    color: #ffffff;
    font: 3rem SourceSansPro-bold;
    margin-bottom: 25px;
}
.project-body p {
    margin-bottom: 10px;
    text-indent: 25px;
}
.project-body > section p {
    color: #ffffff;
    font: 1.5rem Roboto-regular;
    width: 80%;
}
.ref-link {
    color: #f6b037;
    font: 1.5rem Roboto-regular;
    text-decoration: underline;
}

.title-container {
    margin-left: 50px;
    margin-top: 50px;
    position: relative;
    width: auto;
}
.title-container h1 {
    font-family: SourceSansPro-bold;
}
.title-effect {
    color: rgba(255, 255, 255, 0.1);
    font-size: 12.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.title {
    bottom: 0px;
    color: #ffffff;
    font-size: 6.25rem;
    left: 350px;
    overflow: hidden;
    position: absolute;
    width: 80%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

hr:nth-child(2) {
    border: 2px solid #ffffff;
    margin: auto;
    width: 95%;
}
hr {
    border-top: 1px solid #ffffff;
    margin: auto;
    margin-top: 50px;
    width: 95%;
}

.carousel {
    align-items: center;
    gap: 25px;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 80%;
}
#display-img {
    width: 60%;
}
.controls-container {
    flex-basis: 100%;
    justify-content: space-evenly;
}
.carousel-btn {
    background-color: #171717;
    border: none;
    cursor: pointer;
}
.mini-container {
    display: flex;
    justify-content: space-evenly;
    width: auto;
}
.mini-img {
    width: 15%;
}

.tech-container i {
    font-size: 40px;
    margin: 5px;
}
.tech-container p {
    text-indent: 0px;
}
#unity-icon {
    color: #ffffff;
}

.project-btns {
    gap: 25px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: auto;
}
.project-btns img {
    width: 10%;
}
.project-btns a {
    align-items: center;
    border-radius: 55px;
    display: flex;
    font: 1.2rem OpenSans-regular;
    justify-content: space-evenly;
    padding: 0.2em 0.5em;
    text-decoration: none;
}

.github-btn {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.view-project-btn-2 {
    border: 2px solid #f6b037;
    color: #ffffff;
}

/* Media Queries */
@media screen and (prefers-reduced-motion: reduce) {
    .hidden {
        transition: none;
    }
    .off-screen {
        transition: none;
    }
}

@media (hover: hover) {
    .thank-you-box a:hover {
        color: #f6b037;
    }

    .bread-crumbs a:hover {
        color: #f6b037;
    }

    .mini-img {
        cursor: pointer;
    }
}

@media only screen and (max-width: 769px) {
    /* Global */
    .nav-bar {
        background-color: #f6f5f2;
        box-shadow: 0px -5px 25px 2px #ffffff;
        display: flex;
        height: 50px;
        justify-content: flex-end;
        position: fixed;
        transition: 1s ease;
        width: 100%;
        z-index: 4;
    }
    .nav-btn {
        align-items: center;
        background-color: #f6f5f2;
        border: none;
        cursor: pointer;
        gap: 5px;
        justify-content: center;
        margin: 5px;
        padding: 5px;
    }
    .nav-btn-icon {
        background-color: #171717;
        border-radius: 25px;
        height: 6px;
        transition: 0.5s;
        width: 40px;
    }
    .open div:nth-child(1) {
        transform: rotate(45deg) translate(0px, 15px);
    }
    .open div:nth-child(2) {
        opacity: 0;
    }
    .open div:nth-child(3) {
        transform: rotate(-45deg) translate(0px, -15px);
    }

    .nav-menu {
        align-items: center;
        background-color: rgba(23, 23, 23, 0.8);
        display: flex;
        flex-direction: column;
        gap: 25px;
        height: 100vh;
        justify-content: center;
        position: fixed;
        right: -100%;
        transition: 0.5s ease;
        width: 100%;
        z-index: 3;
    }
    .nav-menu a {
        color: #ffffff;
        font: 2rem OpenSans-regular;
        text-decoration: none;
        padding: 0px 0px 0px 0px;
    }
    .nav-menu a:nth-child(1) {
        margin-top: 0px;
    }

    .hover-nav {
        align-items: center;
        background-color: #f6f5f2;
        border-radius: 50px;
        bottom: 5%;
        box-shadow: 0px 0px 10px 1px #ffffff;
        gap: 0em;
        height: 50px;
        justify-content: space-between;
        left: 0%;
        margin-left: auto;
        margin-right: auto;
        position: fixed;
        right: 0%;
        transition: 1s ease;
        width: max-content;
        z-index: 2;
    }
    .hover-nav a {
        align-items: center;
        border-radius: 50px;
        color: #000000;
        display: flex;
        height: 50px;
        font: 1.2rem OpenSans-regular;
        padding: 0px 20px;
        text-decoration: none;
        transition: 0.5s linear;
    }

    /* Home */
    .home {
        align-items: center;
        background-color: #171717;
        height: 100vh;
        justify-content: center;
    }
    .home img {
        margin-left: 3%;
        margin-top: 5%;
        width: 95%;
    }
    .home h1 {
        color: #ffffff;
        font: 2.5rem SourceSansPro-bold;
        margin-left: 0%;
        margin-top: 20%;
        text-align: center;
        width: 100%;
    }

    /* About */
    .about {
        background-color: #f6f5f2;
        flex-direction: column;
        gap: 25px;
        height: auto;
    }
    .about > * {
        flex-basis: 100%;
        margin: 10px 10px;
    }

    .promo-box {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 25px;
        position: static;
    }
    .promo-box h1 {
        font: 2.25rem SourceSansPro-bold;
        position: static;
        margin-top: 50px;
        margin-bottom: 50px;
        text-align: center;
        width: 100%;
        z-index: 0;
    }
    .promo-box a {
        background-color: #f6b037;
        border-radius: 50px;
        box-shadow: 5px 5px 20px 1px #000000;
        color: #000000;
        font: 1.2rem OpenSans-regular;
        padding: 0.8em 1.5em;
        position: static;
        top: 0%;
        text-decoration: none;
        z-index: 0;
    }

    #model-box {
        height: 350px;
        left: 0%;
        margin: auto;
        margin-bottom: 5%;
        position: relative;
        top: 0%;
        width: 100%;
    }
    #laptop {
        bottom: 0%;
        left: 0%;
        position: absolute;
        width: 70%;
        z-index: 1;
    }
    #smart-phone {
        bottom: 0%;
        left: 60%;
        position: absolute;
        width: 25%;
    }

    .info-box {
        gap: 15px;
        padding-bottom: 50px;
        align-items: center;
    }
    .info-box h1 {
        font: 2.25rem Roboto-regular;
        margin-bottom: 1em;
        margin-left: 0%;
        text-align: center;
    }
    .info-box p {
        font: 1.4rem Roboto-light;
        margin-left: 0%;
        text-align: left;
        text-indent: 25px;
        width: 80%;
    }

    /* Contact */
    .contact {
        align-items: center;
        background-color: #171717;
        color: #ffffff;
        height: auto;
    }
    .contact h1 {
        color: #ffffff;
        font: 2.25rem SourceSansPro-bold;
        margin: 80px 10px 0px 10px;
        text-align: center;
        width: 80%;
    }
    .contact > section {
        flex-direction: column;
        gap: 50px;
        height: auto;
        margin-top: 50px;
        width: 100%;
    }

    .thank-you-box {
        align-items: center;
        gap: 15px;
        justify-content: center;
        width: auto;
    }
    .thank-you-box p {
        font: 1.4rem Roboto-light;
        text-align: center;
        width: 65%;
    }
    .thank-you-box a {
        color: #ffffff;
    }
    .thank-you-box > section {
        align-items: center;
        gap: 1em;
    }
    .thank-you-box > section img {
        margin-top: 5px;
        width: 30px;
    }
    .thank-you-box > section a {
        color: #ffffff;
        font: 1.2rem OpenSans-regular;
    }

    .divider {
        border-right: none;
        border-bottom: 2px solid #f6f5f2;
        height: auto;
        margin-top: 5%;
        margin: auto;
        width: 80%;
    }

    .other-links-box {
        align-items: center;
        gap: 25px;
        justify-content: center;
        margin-bottom: 50px;
        width: auto;
    }
    .other-links-box p:nth-child(1) {
        font: 2.5rem Roboto-regular;
    }
    .other-links-box p:nth-child(2) {
        font: 1.4rem Roboto-light;
    }
    .other-links-box > section {
        gap: 50px;
    }
    .other-links-box a {
        text-decoration: none;
    }
    .other-links-box i {
        color: #f6f5f2;
        font-size: 55px;
    }

    footer {
        margin-top: auto;
        position: relative;
        width: 100%;
        z-index: 0;
    }

    .desktop-img {
        display: none;
        height: auto;
        position: relative;
        top: 5px;
        width: 100%;
    }

    .mobile-img {
        display: block;
        height: auto;
        position: relative;
        top: 5px;
        width: 100%;
    }

    footer p {
        bottom: 0%;
        color: #ffffff;
        font: 1rem Roboto-light;
        left: 0%;
        margin-left: auto;
        margin-right: auto;
        position: absolute;
        right: 0%;
        text-align: center;
        z-index: 1;
    }

    /* Portfolio Showcase */
    .portfolio-nav-bar {
        background-color: #f6f5f2;
        box-shadow: 0px 0px 10px 1px #000000;
        display: flex;
        height: 50px;
        justify-content: space-between;
        position: fixed;
        width: 100%;
        z-index: 4;
    }

    .bread-crumbs {
        display: flex;
        gap: 5px;
        margin-left: 5px;
        margin-top: 20px;
    }
    .bread-crumbs li {
        list-style: none;
    }
    .bread-crumbs a {
        color: #000000;
        font-family: OpenSans-italic;
    }

    .portfolio-body {
        align-items: center;
        background-color: #f6f5f2;
        gap: 50px;
        width: 100%;
    }

    .open-letter {
        margin-top: 25%;
        width: 80%;
    }
    .open-letter h1 {
        font: 2.25rem SourceSansPro-bold;
        margin-bottom: 40px;
        text-align: center;
    }
    .open-letter p {
        font: 1.25rem Roboto-light;
        margin: 0px 10px;
        text-indent: 25px;
    }
    .open-letter :nth-child(3) {
        margin-top: 20px;
        text-indent: 0px;
    }
    .open-letter :nth-child(4) {
        text-indent: 0px;
    }

    .project-showcase {
        gap: 20px;
        width: 100%;
    }

    .portfolio-project {
        flex-direction: column;
    }
    .portfolio-project:nth-child(even) {
        flex-direction: column-reverse;
    }
    .portfolio-project > * {
        flex-basis: 100%;
    }
    .portfolio-project img {
        width: 100%;
    }

    .project-info {
        padding: 0px 0px
    }
    .project-info:nth-child(odd) > * {
        justify-content: flex-start;
        text-align: left;
    }
    .project-info h2 {
        font: 2.25rem Roboto-regular;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-top: 10px;
    }
    .project-info p {
        font: 1.25rem Roboto-light;
        margin-left: 5px;
        width: 98%;
    }
    .project-info p:nth-child(2) {
        margin-bottom: 20px;
    }

    .icon-container {
        flex-wrap: wrap;
    }
    .project-info i {
        font-size: 35px;
        gap: 5px;
    }

    .btns {
        align-items: center;
        flex-direction: column;
        gap: 25px;
        margin-top: 20px;
    }
    .btns img {
        width: 15%;
    }
    .btns a {
        align-items: center;
        border-radius: 55px;
        display: flex;
        font: 1rem OpenSans-regular;
        justify-content: space-evenly;
        padding: 0.2em 0.5em;
        text-decoration: none;
        width: 25%;
    }

    .learn-more-btn {
        border: 2px solid #000000;
        color: #000000;
    }

    .view-project-btn {
        border: 2px solid #f6b037;
        color: #f6b037;
    }

    .portfolio-footer p {
        color: #000000;
    }

    /* Portfolio Project Page */
    .project-nav-bar {
        background-color: #f6f5f2;
        box-shadow: 0px 0px 10px 1px #ffffff;
        display: flex;
        height: 50px;
        justify-content: space-between;
        position: fixed;
        width: 100%;
        z-index: 4;
    }

    .project-body {
        background-color: #171717;
        gap: 15px;
        width: 100%;
    }
    .project-body > section {
        margin-left: 15px;
    }
    .project-body h2 {
        color: #ffffff;
        font: 2.25rem SourceSansPro-bold;
        margin-bottom: 25px;
    }
    .project-body > section p {
        color: #ffffff;
        font: 1.25rem Roboto-regular;
        width: 95%;
    }
    .ref-link {
        color: #f6b037;
        font: 1.25rem Roboto-regular;
        text-decoration: underline;
    }

    .title-container {
        margin-bottom: 25px;
        margin-left: 0px;
        margin-top: 70px;
        position: relative;
        width: auto;
    }
    .title-container h1 {
        font-family: SourceSansPro-bold;
    }
    .title-effect {
        color: rgba(255, 255, 255, 0.1);
        font-size: 5rem;
    }
    .title {
        bottom: -15px;
        color: #ffffff;
        font-size: 3.75rem;
        left: 90px;
        position: absolute;
    }

    hr:nth-child(2) {
        border: 2px solid #ffffff;
        margin: auto;
        width: 90%;
    }
    hr {
        border-top: 1px solid #ffffff;
        margin: auto;
        margin-top: 50px;
        width: 90%;
    }

    .carousel {
        align-items: center;
        gap: 25px;
        margin: auto;
        padding-bottom: 50px;
        padding-top: 50px;
        width: 100%;
    }
    #display-img {
        width: 100%;
    }
    .controls-container {
        flex-basis: 100%;
        gap: 10px;
        justify-content: center;
    }
    .carousel-btn {
        background-color: #171717;
        border: none;
        cursor: pointer;
    }
    .mini-container {
        align-items: center;
        display: flex;
        gap: 10px;
        justify-content: space-evenly;
        width: auto;
    }
    .mini-img {
        width: 15%;
    }
    .mobile-mini-img {
        background-color: #ffffff;
        border-radius: 50%;
        height: 40px;
        width: 40px;
    }

    .tech-container i {
        font-size: 40px;
        margin: 5px;
    }

    .project-btns {
        align-items: center;
        flex-direction: column;
        gap: 55px;
        margin: auto;
        padding-bottom: 40px;
        padding-top: 40px;
    }
    .project-btns img {
        width: 10%;
    }
    .project-btns a {
        align-items: center;
        border-radius: 55px;
        display: flex;
        font: 1.2rem OpenSans-regular;
        justify-content: space-evenly;
        padding: 0.2em 0.5em;
        text-decoration: none;
    }

    .github-btn {
        border: 2px solid #ffffff;
        color: #ffffff;
    }

    .view-project-btn-2 {
        border: 2px solid #f6b037;
        color: #ffffff;
        width: 70%;
    }
}

@media only screen and (max-width: 414px) {
    /* Global */
    .nav-bar {
        background-color: #f6f5f2;
        box-shadow: 0px -5px 25px 2px #ffffff;
        display: flex;
        height: 50px;
        justify-content: flex-end;
        position: fixed;
        transition: 1s ease;
        width: 100%;
        z-index: 4;
    }
    .nav-btn {
        align-items: center;
        background-color: #f6f5f2;
        border: none;
        cursor: pointer;
        gap: 5px;
        justify-content: center;
        margin: 5px;
        padding: 5px;
    }
    .nav-btn-icon {
        background-color: #171717;
        border-radius: 25px;
        height: 6px;
        transition: 0.5s;
        width: 40px;
    }
    .open div:nth-child(1) {
        transform: rotate(45deg) translate(0px, 15px);
    }
    .open div:nth-child(2) {
        opacity: 0;
    }
    .open div:nth-child(3) {
        transform: rotate(-45deg) translate(0px, -15px);
    }

    .nav-menu {
        align-items: center;
        background-color: rgba(23, 23, 23, 0.8);
        display: flex;
        flex-direction: column;
        gap: 25px;
        height: 100vh;
        justify-content: center;
        position: fixed;
        right: -100%;
        transition: 0.5s ease;
        width: 100%;
        z-index: 3;
    }
    .nav-menu a {
        color: #ffffff;
        font: 2rem OpenSans-regular;
        text-decoration: none;
        padding: 0px 0px 0px 0px;
    }
    .nav-menu a:nth-child(1) {
        margin-top: 0px;
    }

    .hover-nav {
        align-items: center;
        background-color: #f6f5f2;
        border-radius: 50px;
        bottom: 5%;
        box-shadow: 0px 0px 10px 1px #ffffff;
        gap: 0em;
        height: 50px;
        justify-content: space-between;
        left: 0%;
        margin-left: 5%;
        margin-right: 5%;
        position: fixed;
        right: 0%;
        transition: 1s ease;
        width: auto;
        z-index: 2;
    }
    .hover-nav a {
        align-items: center;
        border-radius: 50px;
        color: #000000;
        display: flex;
        height: 50px;
        font: 1.2rem OpenSans-regular;
        padding: 0px 20px;
        text-decoration: none;
        transition: 0.5s linear;
    }

    /* Home */
    .home {
        align-items: center;
        background-color: #171717;
        height: 100vh;
        justify-content: center;
    }
    .home img {
        margin-left: 3%;
        margin-top: 5%;
        width: 95%;
    }
    .home h1 {
        color: #ffffff;
        font: 2.5rem SourceSansPro-bold;
        margin-left: 0%;
        margin-top: 20%;
        text-align: center;
        width: 100%;
    }

    /* About */
    .about {
        background-color: #f6f5f2;
        flex-direction: column;
        gap: 25px;
        height: auto;
    }
    .about > * {
        flex-basis: 100%;
        margin: 10px 10px;
    }

    .promo-box {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 25px;
        position: static;
    }
    .promo-box h1 {
        font: 2.25rem SourceSansPro-bold;
        position: static;
        margin-top: 50px;
        width: 100%;
        z-index: 0;
    }
    .promo-box a {
        background-color: #f6b037;
        border-radius: 50px;
        box-shadow: 5px 5px 20px 1px #000000;
        color: #000000;
        font: 1.2rem OpenSans-regular;
        padding: 0.8em 1.5em;
        position: static;
        top: 0%;
        text-decoration: none;
        z-index: 0;
    }

    #model-box {
        height: 350px;
        left: 0%;
        margin: auto;
        margin-bottom: 5%;
        position: relative;
        top: 0%;
        width: 100%;
    }
    #laptop {
        bottom: 0%;
        left: -10%;
        position: absolute;
        width: 90%;
        z-index: 1;
    }
    #smart-phone {
        bottom: 0%;
        left: 60%;
        position: absolute;
        width: 42%;
    }

    .info-box {
        gap: 15px;
        padding-bottom: 50px;
    }
    .info-box h1 {
        font: 2.25rem Roboto-regular;
        margin-bottom: 1em;
        margin-left: 0%;
        text-align: center;
    }
    .info-box p {
        font: 1.4rem Roboto-light;
        margin-left: 0%;
        text-align: left;
        text-indent: 25px;
        width: auto;
    }

    /* Contact */
    .contact {
        align-items: center;
        background-color: #171717;
        color: #ffffff;
        height: auto;
    }
    .contact h1 {
        color: #ffffff;
        font: 2.25rem SourceSansPro-bold;
        margin: 80px 10px 0px 10px;
        text-align: center;
    }
    .contact > section {
        flex-direction: column;
        gap: 50px;
        height: auto;
        margin-top: 50px;
        width: 100%;
    }

    .thank-you-box {
        align-items: center;
        gap: 15px;
        justify-content: center;
        width: auto;
    }
    .thank-you-box p {
        font: 1.4rem Roboto-light;
        text-align: center;
        width: 95%;
    }
    .thank-you-box a {
        color: #ffffff;
    }
    .thank-you-box > section {
        align-items: center;
        gap: 1em;
    }
    .thank-you-box > section img {
        margin-top: 5px;
        width: 30px;
    }
    .thank-you-box > section a {
        color: #ffffff;
        font: 1.2rem OpenSans-regular;
    }

    .divider {
        border-right: none;
        border-bottom: 2px solid #f6f5f2;
        height: auto;
        margin-top: 5%;
        margin: auto;
        width: 80%;
    }

    .other-links-box {
        align-items: center;
        gap: 25px;
        justify-content: center;
        margin-bottom: 50px;
        width: auto;
    }
    .other-links-box p:nth-child(1) {
        font: 2.5rem Roboto-regular;
    }
    .other-links-box p:nth-child(2) {
        font: 1.4rem Roboto-light;
    }
    .other-links-box > section {
        gap: 50px;
    }
    .other-links-box a {
        text-decoration: none;
    }
    .other-links-box i {
        color: #f6f5f2;
        font-size: 55px;
    }

    footer {
        margin-top: auto;
        position: relative;
        width: 100%;
        z-index: 0;
    }

    .desktop-img {
        display: none;
        height: auto;
        position: relative;
        top: 5px;
        width: 100%;
    }

    .mobile-img {
        display: block;
        height: auto;
        position: relative;
        top: 5px;
        width: 100%;
    }

    footer p {
        bottom: 0%;
        color: #ffffff;
        font: 1rem Roboto-light;
        left: 0%;
        margin-left: auto;
        margin-right: auto;
        position: absolute;
        right: 0%;
        text-align: center;
        z-index: 1;
    }

    /* Portfolio Showcase */
    .portfolio-nav-bar {
        background-color: #f6f5f2;
        box-shadow: 0px 0px 10px 1px #000000;
        display: flex;
        height: 50px;
        justify-content: space-between;
        position: fixed;
        width: 100%;
        z-index: 4;
    }

    .bread-crumbs {
        display: flex;
        gap: 5px;
        margin-left: 5px;
        margin-top: 20px;
    }
    .bread-crumbs li {
        list-style: none;
    }
    .bread-crumbs a {
        color: #000000;
        font-family: OpenSans-italic;
    }

    .portfolio-body {
        align-items: center;
        background-color: #f6f5f2;
        gap: 50px;
        width: 100%;
    }

    .open-letter {
        margin-top: 25%;
        width: 100%;
    }
    .open-letter h1 {
        font: 2.25rem SourceSansPro-bold;
        margin-bottom: 40px;
        text-align: center;
    }
    .open-letter p {
        font: 1.25rem Roboto-light;
        margin: 0px 10px;
        text-indent: 25px;
    }
    .open-letter :nth-child(3) {
        margin-top: 20px;
        text-indent: 0px;
    }
    .open-letter :nth-child(4) {
        text-indent: 0px;
    }

    .project-showcase {
        gap: 20px;
        width: 100%;
    }

    .portfolio-project {
        flex-direction: column;
    }
    .portfolio-project:nth-child(even) {
        flex-direction: column-reverse;
    }
    .portfolio-project > * {
        flex-basis: 100%;
    }
    .portfolio-project img {
        width: 100%;
    }

    .project-info {
        padding: 0px 0px
    }
    .project-info:nth-child(odd) > * {
        justify-content: flex-start;
        text-align: left;
    }
    .project-info h2 {
        font: 2.25rem Roboto-regular;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-top: 10px;
    }
    .project-info p {
        font: 1.25rem Roboto-light;
        margin-left: 5px;
        width: 98%;
    }
    .project-info p:nth-child(2) {
        margin-bottom: 20px;
    }

    .icon-container {
        flex-wrap: wrap;
    }
    .project-info i {
        font-size: 35px;
        gap: 5px;
    }

    .btns {
        align-items: center;
        flex-direction: column;
        gap: 25px;
        margin-top: 20px;
    }
    .btns img {
        width: 15%;
    }
    .btns a {
        align-items: center;
        border-radius: 55px;
        display: flex;
        font: 1rem OpenSans-regular;
        justify-content: space-evenly;
        padding: 0.2em 0.5em;
        text-decoration: none;
        width: 50%;
    }

    .learn-more-btn {
        border: 2px solid #000000;
        color: #000000;
    }

    .view-project-btn {
        border: 2px solid #f6b037;
        color: #f6b037;
    }

    .portfolio-footer p {
        color: #000000;
    }

    /* Portfolio Project Page */
    .project-nav-bar {
        background-color: #f6f5f2;
        box-shadow: 0px 0px 10px 1px #ffffff;
        display: flex;
        height: 50px;
        justify-content: space-between;
        position: fixed;
        width: 100%;
        z-index: 4;
    }

    .project-body {
        background-color: #171717;
        gap: 15px;
        width: 100%;
    }
    .project-body > section {
        margin-left: 15px;
    }
    .project-body h2 {
        color: #ffffff;
        font: 2.25rem SourceSansPro-bold;
        margin-bottom: 25px;
    }
    .project-body > section p {
        color: #ffffff;
        font: 1.25rem Roboto-regular;
        width: 95%;
    }
    .ref-link {
        color: #f6b037;
        font: 1.25rem Roboto-regular;
        text-decoration: underline;
    }

    .title-container {
        margin-bottom: 25px;
        margin-left: 0px;
        margin-top: 70px;
        position: relative;
        width: auto;
    }
    .title-container h1 {
        font-family: SourceSansPro-bold;
    }
    .title-effect {
        color: rgba(255, 255, 255, 0.1);
        font-size: 5rem;
    }
    .title {
        bottom: -15px;
        color: #ffffff;
        font-size: 3.75rem;
        left: 70px;
        position: absolute;
    }

    hr:nth-child(2) {
        border: 2px solid #ffffff;
        margin: auto;
        width: 90%;
    }
    hr {
        border-top: 1px solid #ffffff;
        margin: auto;
        margin-top: 50px;
        width: 90%;
    }

    .carousel {
        align-items: center;
        gap: 25px;
        margin: auto;
        padding-bottom: 50px;
        padding-top: 50px;
        width: 100%;
    }
    #display-img {
        width: 100%;
    }
    .controls-container {
        flex-basis: 100%;
        gap: 10px;
        justify-content: center;
    }
    .carousel-btn {
        background-color: #171717;
        border: none;
        cursor: pointer;
    }
    .carousel-btn img {
        width: 80%;
    }
    .mini-container {
        align-items: center;
        display: flex;
        gap: 10px;
        justify-content: space-evenly;
        width: auto;
    }
    .mini-img {
        width: 15%;
    }
    .mobile-mini-img {
        background-color: #ffffff;
        border-radius: 50%;
        height: 40px;
        width: 40px;
    }

    .tech-container i {
        font-size: 40px;
        margin: 5px;
    }

    .project-btns {
        align-items: center;
        flex-direction: column;
        gap: 55px;
        margin: auto;
        padding-bottom: 40px;
        padding-top: 40px;
    }
    .project-btns img {
        width: 10%;
    }
    .project-btns a {
        align-items: center;
        border-radius: 55px;
        display: flex;
        font: 1.2rem OpenSans-regular;
        justify-content: space-evenly;
        padding: 0.2em 0.5em;
        text-decoration: none;
    }

    .github-btn {
        border: 2px solid #ffffff;
        color: #ffffff;
    }

    .view-project-btn-2 {
        border: 2px solid #f6b037;
        color: #ffffff;
        width: 70%;
    }
}