* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Hack, monospace;
    scroll-behavior: smooth;
}

*::selection {
    background: #FF69B4;
}



/* ----------------------------------------------- */
/* NAVBAR TAB */
/* ----------------------------------------------- */

.navbar {
    background: #131313;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 100px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    font-family: "Nanum Brush Script", cursive;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 3.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;
}



.navbar__links:hover {
    color: #ffc2d1;
    transition: all 0.3s ease;
}


@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: -1;
    }

    .navbar__menu.active {
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 30vh;
        font-size: 1.3rem;
    }

    #navbar__logo {
        padding-left: 25px;
        font-size: 2rem;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%;
        height: 40px;
    }

    .navbar__links {
        text-align: center;
        padding: .1rem;
        width: 100%;
        display: table;
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}



/* ----------------------------------------------- */
/* PROJECTS TAB */
/* ----------------------------------------------- */

.projects {
    background: #000000;
    background: linear-gradient(to right, #161616, #000000);
    padding-bottom: 10rem;
}

.projects__container {
    display: grid;
    grid-template-rows: 1fr;
    max-width: 1500px;
    margin: 0 auto;
    height: 90%;
    text-align: left;
    /* background-color: purple; */
}

.read__more {
    font-size: 18px;
    width: 150px;
    height: 50px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 10px 0px;
    cursor: pointer;
    outline: none;
    background-color: #d04c73;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #742a40;
    transition: 0.1s;
}

.read__more:hover {
    background-color: #b94366
}

.read__more:active {
    background-color: #b94366;
    box-shadow: 0 5px #451926;
    transform: translateY(4px);
}



/* ----------------------------------------------- */
/* RECENT PROJECTS TAB */
/* ----------------------------------------------- */

.recent__header__text {
    background-color: #b94366;
    font-family: "Nanum Brush Script", cursive;
    font-size: 60px;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    text-align: left;
    border-radius: 10px;
}

.recent__content {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-row-gap: 20px;
    max-width: 1500px;
    margin: auto auto;
    height: 90%;
    text-align: left;
    /* background-color: #233223; */
}



/* ----------------------------------------------- */
/* INVENTORY SYSTEM ITEM */
/* ----------------------------------------------- */

.inventorySystem__container {
    display: grid;
    grid-template-columns: 2fr 2fr;
    max-width: 1500px;
    margin: 0 10%;
    text-align: left;
    padding-left: 40px;
    border-radius: 1%;
    background-color: #222222;
}

.inventorySystem__text__container {
    /* background-color: #2b5541; */
    display: grid;
    grid-template-rows: .1fr .5fr .1fr;
}

.inventorySystem__header__text {
    font-family: "Nanum Brush Script", cursive;
    font-size: 50px;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 20px;
}

.inventorySystem__description {
    font-size: 18px;
    padding-top: 20px;
    padding-right: 20px;
    color: #fff;
    text-align: left;
}

.inventorySystem__description span {
    padding-left: 5px;
    padding-right: 5px;
    color: #ffc2d1;
}

.inventorySystem__img__container {
    overflow: hidden;
}

.inventorySystem__image {
    height: 100%;
    width: 100%;
    max-width: 380px;
    object-fit: contain;
    transition: transform .8s;
    border-radius: 1.5%;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.inventorySystem__image:hover {
    transform: scale(1.05);
}



/* ----------------------------------------------- */
/* MOVEMENT SYSTEM ITEM */
/* ----------------------------------------------- */

.movementsystem__container {
    display: grid;
    grid-template-columns: 2fr 2fr;
    max-width: 1500px;
    margin: 0 10%;
    text-align: left;
    padding-left: 40px;
    border-radius: 1%;
    background-color: #222222;
}

.movementsystem__text__container {
    /* background-color: #2b5541; */
    display: grid;
    grid-template-rows: .1fr .5fr .1fr;
}

.movementsystem__header__text {
    font-family: "Nanum Brush Script", cursive;
    font-size: 50px;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 20px;
}

.movementsystem__description {
    font-size: 18px;
    padding-top: 20px;
    padding-right: 20px;
    color: #fff;
    text-align: left;
}

.movementsystem__description span {
    padding-left: 5px;
    padding-right: 5px;
    color: #ffc2d1;
}

.movementsystem__img__container {
    overflow: hidden;
}

.movementsystem__image {
    height: 100%;
    width: 100%;
    max-width: 600px;
    object-fit: contain;
    transition: transform .8s;
    border-radius: 1.5%;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.movementsystem__image:hover {
    transform: scale(1.05);
}



/* ----------------------------------------------- */
/* MOOD 666 ITEM */
/* ----------------------------------------------- */

.Mood__container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    max-width: 1500px;
    margin: 0 auto;
    text-align: left;
    padding-left: 40px;
    border-radius: 1%;
    background-color: #222222;
}

.Mood__text__container {
    /* background-color: #2b5541; */
    display: grid;
    grid-template-rows: .1fr .5fr .1fr;
}

.Mood__header__text {
    font-family: "Nanum Brush Script", cursive;
    font-size: 50px;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 20px;
}

.Mood__description__list {
    list-style-position: inside;
}

.Mood__description {
    font-size: 18px;
    padding-top: 20px;
    padding-right: 20px;
    color: #fff;
    text-align: left;
}

.Mood__img__container {
    overflow: hidden;
}

.Mood__image {
    height: 100%;
    width: 100%;
    max-width: 380px;
    object-fit: contain;
    transition: transform .8s;
    border-radius: 1.5%;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.Mood__image:hover {
    transform: scale(1.05);
}



/* ----------------------------------------------- */
/* PROJECT E.L.F ITEM */
/* ----------------------------------------------- */

.GP3__container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    max-width: 1500px;
    margin: 0 auto;
    text-align: left;
    padding-left: 40px;
    border-radius: 1%;
    background-color: #222222;
}

.GP3__text__container {
    /* background-color: #2b5541; */
    display: grid;
    grid-template-rows: .1fr .5fr .1fr;
}

.GP3__header__text {
    font-family: "Nanum Brush Script", cursive;
    font-size: 50px;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 20px;
}

.GP3__description__list {
    list-style-position: inside;
}

.GP3__description {
    font-size: 18px;
    padding-top: 20px;
    padding-right: 20px;
    color: #fff;
    text-align: left;
}

.GP3__img__container {
    overflow: hidden;
}

.GP3__image {
    height: 100%;
    width: 100%;
    max-width: 380px;
    object-fit: contain;
    transition: transform .8s;
    border-radius: 1.5%;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.GP3__image:hover {
    transform: scale(1.05);
}



/* ----------------------------------------------- */
/* AMPLIFISH ITEM */
/* ----------------------------------------------- */

.GP1__container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    max-width: 1500px;
    margin: 0 auto;
    text-align: left;
    padding-left: 40px;
    border-radius: 1%;
    background-color: #222222;
}

.GP1__text__container {
    /* background-color: #2b5541; */
    display: grid;
    grid-template-rows: .1fr .5fr .1fr;
}

.GP1__header__text {
    font-family: "Nanum Brush Script", cursive;
    font-size: 50px;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 20px;
}

.GP1__description__list {
    list-style-position: inside;
}

.GP1__description {
    font-size: 18px;
    padding-top: 20px;
    padding-right: 20px;
    color: #fff;
    text-align: left;
}

.GP1__img__container {
    overflow: hidden;
}

.GP1__image {
    height: 100%;
    width: 100%;
    max-width: 380px;
    object-fit: contain;
    transition: transform .8s;
    border-radius: 1.5%;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.GP1__image:hover {
    transform: scale(1.05);
}







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

    .projects {
        background: #000000;
        background: linear-gradient(to right, #161616, #000000);
        padding-bottom: 10rem;
    }

    .projects__container {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        height: 90%;
    }

    .recent__header__text {
        font-size: 45px;
    }

    .recent__content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        max-width: 1500px;
        margin: 0 auto;
        height: 90%;
        text-align: left;
        /* padding-left: 10px; */
        /* background-color: #233223; */
    }
    
    .recent__content__row1 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        grid-row-gap: 20px;
        max-width: 1500px;
        margin: 0 6%;
        height: 90%;
        text-align: left;
        /* background-color: #233223; */
    }
    
    .recent__content__row2 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        grid-row-gap: 20px;
        max-width: 1500px;
        margin: 0 6%;
        height: 90%;
        text-align: left;
        /* background-color: #233223; */
    }
    
    .read__more {
        font-size: 18px;
        width: 150px;
        height: 50px;
        color: #fff;
        text-decoration: none;
        text-align: center;
        padding: 10px 0px;
        cursor: pointer;
        outline: none;
        background-color: #d04c73;
        border: none;
        border-radius: 15px;
        box-shadow: 0 9px #742a40;
        transition: 0.1s;
    }
    
    .read__more:hover {
        background-color: #b94366
    }
    
    .read__more:active {
        background-color: #b94366;
        box-shadow: 0 5px #451926;
        transform: translateY(4px);
    }
    
    

    /* ----------------------------------------------- */
    /* INVENTORY SYSTEM ITEM */
    /* ----------------------------------------------- */

    .inventorySystem__container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: .5fr .5fr;
        max-width: 1500px;
        margin: 0 1%;
        text-align: left;
        padding-left: 40px;
        padding-right: 40px;
        border-radius: 1%;
        background-color: #222222;
    }

    .inventorySystem__text__container {
        /* background-color: #2b5541; */
        display: grid;
        grid-template-rows: .1fr .5fr .1fr;
    }

    .inventorySystem__header__text {
        font-family: "Nanum Brush Script", cursive;
        font-size: 35px;
        color: #fff;
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .inventorySystem__description__list {
        list-style-position: inside;
        padding-bottom: 20px;
    }

    .inventorySystem__description {
        font-size: 18px;
        padding-top: 20px;
        padding-right: 20px;
        color: #fff;
        text-align: left;
    }

    .inventorySystem__img__container {
        padding-top: 40px;
        overflow: hidden;
        align-items: center;
    }

    .inventorySystem__image {
        height: auto;
        width: 300px;
        transition: transform .8s;
        border-radius: 1.5%;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -o-user-select: none;
        user-select: none;
    }

    .inventorySystem__image:hover {
        transform: scale(1.05);
    }



    /* ----------------------------------------------- */
    /* MOVEMENT SYSTEM ITEM */
    /* ----------------------------------------------- */

    .movementsystem__container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: .5fr .5fr;
        max-width: 1500px;
        margin: 0 1%;
        text-align: left;
        padding-left: 40px;
        padding-right: 40px;
        border-radius: 1%;
        background-color: #222222;
    }

    .movementsystem__text__container {
        /* background-color: #2b5541; */
        display: grid;
        grid-template-rows: .1fr .5fr .1fr;
    }

    .movementsystem__header__text {
        font-family: "Nanum Brush Script", cursive;
        font-size: 35px;
        color: #fff;
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .movementsystem__description__list {
        list-style-position: inside;
        padding-bottom: 20px;
    }

    .movementsystem__description {
        font-size: 18px;
        padding-top: 20px;
        padding-right: 20px;
        color: #fff;
        text-align: left;
    }

    .movementsystem__img__container {
        padding-top: 40px;
        overflow: hidden;
        align-items: center;
    }

    .movementsystem__image {
        height: auto;
        width: 300px;
        transition: transform .8s;
        border-radius: 1.5%;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -o-user-select: none;
        user-select: none;
    }

    .movementsystem__image:hover {
        transform: scale(1.05);
    }



    /* ----------------------------------------------- */
    /* MOOD 666 ITEM */
    /* ----------------------------------------------- */

    .Mood__container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: .7fr 1fr;
        max-width: 1500px;
        margin: 0 auto;
        text-align: left;
        padding-left: 40px;
        padding-right: 40px;
        border-radius: 1%;
        background-color: #222222;
    }

    .Mood__text__container {
        /* background-color: #2b5541; */
        display: grid;
        grid-template-rows: .1fr .5fr .1fr;
    }

    .Mood__header__text {
        font-family: "Nanum Brush Script", cursive;
        font-size: 35px;
        color: #fff;
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .Mood__description__list {
        list-style-position: inside;
        padding-bottom: 20px;
    }

    .Mood__description {
        font-size: 18px;
        padding-top: 20px;
        padding-right: 20px;
        color: #fff;
        text-align: left;
    }

    .Mood__img__container {
        padding-top: 40px;
        overflow: hidden;
        align-items: center;
    }

    .Mood__image {
        height: auto;
        width: 300px;
        transition: transform .8s;
        border-radius: 1.5%;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -o-user-select: none;
        user-select: none;
    }

    .Mood__image:hover {
        transform: scale(1.05);
    }



    /* ----------------------------------------------- */
    /* PROJECT E.L.F ITEM */
    /* ----------------------------------------------- */

    .GP3__container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: .7fr 1fr;
        max-width: 1500px;
        margin: 0 auto;
        text-align: left;
        padding-left: 40px;
        padding-right: 40px;
        border-radius: 1%;
        background-color: #222222;
    }

    .GP3__text__container {
        /* background-color: #2b5541; */
        display: grid;
        grid-template-rows: .1fr .5fr .1fr;
    }

    .GP3__header__text {
        font-family: "Nanum Brush Script", cursive;
        font-size: 35px;
        color: #fff;
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .GP3__description__list {
        list-style-position: inside;
        padding-bottom: 20px;
    }

    .GP3__description {
        font-size: 18px;
        padding-top: 20px;
        padding-right: 20px;
        color: #fff;
        text-align: left;
    }

    .GP3__img__container {
        padding-top: 40px;
        overflow: hidden;
        align-items: center;
    }

    .GP3__image {
        height: auto;
        width: 300px;
        transition: transform .8s;
        border-radius: 1.5%;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -o-user-select: none;
        user-select: none;
    }

    .GP3__image:hover {
        transform: scale(1.05);
    }



    /* ----------------------------------------------- */
    /* AMPLIFISH ITEM */
    /* ----------------------------------------------- */

    .GP1__container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: .7fr 1fr;
        max-width: 1500px;
        margin: 0 auto;
        text-align: left;
        padding-left: 40px;
        padding-right: 40px;
        border-radius: 1%;
        background-color: #222222;
    }

    .GP1__text__container {
        /* background-color: #2b5541; */
        display: grid;
        grid-template-rows: .1fr .5fr .1fr;
    }

    .GP1__header__text {
        font-family: "Nanum Brush Script", cursive;
        font-size: 35px;
        color: #fff;
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .GP1__description__list {
        list-style-position: inside;
        padding-bottom: 20px;
    }

    .GP1__description {
        font-size: 18px;
        padding-top: 20px;
        padding-right: 20px;
        color: #fff;
        text-align: left;
    }

    .GP1__img__container {
        padding-top: 40px;
        overflow: hidden;
        align-items: center;
    }

    .GP1__image {
        height: auto;
        width: 300px;
        transition: transform .8s;
        border-radius: 1.5%;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -o-user-select: none;
        user-select: none;
    }

    .GP1__image:hover {
        transform: scale(1.05);
    }
}



/* ----------------------------------------------- */
/* FOOTER TAB */
/* ----------------------------------------------- */

.footer__container {
    background-color: #131313;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.media {
    max-width: 2000px;
    width: 100%;
}

.media--wrap {
    display: grid;
    grid-template-columns: .1fr 1fr;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 2000px;
    margin: 4px auto 0 auto;
}

.footer__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 2rem;
}

.footer__text__links {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
}


#footer__logo {
    color: #fff;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 0;
}

.footer__mail {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    padding: 10px 0;
}

.footer__mail:hover {
    color: #ffc2d1;
}

.footer__phone__number {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    padding: 10px 0;
}

.footer__phone__number:hover {
    color: #ffc2d1;
}

.footer__image__links {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: .1fr .1fr;
    grid-row-gap: 30px;
    margin: 10px 0px;
}

.footer__linkedin__link {
    content: url(../General/linkedin_logo_white.png);
    height: auto;
    width: 30px;
}

.footer__linkedin__link:hover {
    content: url(../General/linkedin_logo_hover.png);
}

.footer__github__link {
    content: url(../General/github_logo_white.png);
    height: auto;
    width: 30px;
    align-items: end;
}

.footer__github__link:hover {
    content: url(../General/github_logo_hover.png);
}

.copyright__container {
    text-align: right;
}

.website__rights {
    color: darkgrey;
    font-size: 1rem;
}


@media screen and (max-width: 960px) {
    
    .media--wrap {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr .1fr;
        text-align: center;
    }
    
    #footer__logo {
        margin-bottom: 0rem;
    }

    .copyright__container {
        text-align: center;
    }

    .website__rights {
        margin-top: 2rem;
        margin-bottom: 0.5rem;
        font-size: .8rem;
    }
}


@media screen and (max-width: 480px) {
    .footer__links--items {
        margin: 0;
        padding: 10px;
        width: 100%;
    }
}