* {
    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);
    }
}



/* ----------------------------------------------- */
/* MAIN TAB */
/* ----------------------------------------------- */

.main {
    background: #000000;
    background: linear-gradient(to right, #161616, #000000);
    padding-top: 25px;
}

.main__container {
    display: grid;
    grid-template-columns: 1fr .5fr;
    grid-template-rows: 1fr 0.4fr;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 90%;
    text-align: center;
    padding: 30px;
}

.main__heading {
    font-family: "Nanum Brush Script", cursive;
    font-style: italic;
    font-size: 60px;
    margin-bottom: 24px;
    color: #fff;
    padding-right: 50px;
    text-align: left;
}

.main__description {
    font-size: 16px;
    padding-top: 30px;
    padding-right: 20px;
    color: #fff;
    text-align: left;
}

.main__description span {
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
    padding-left: 10px;
    padding-right: 10px;
    color: #ffc2d1;
}

.main__img__container {
    display: grid;
    grid-template-rows: 1fr 0.5fr;
    justify-content: center;
    align-items: center;
}

.main__image {
    margin: 10px;
    height: auto;
    width: 300px;
    border-radius: 50%;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.main__link__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 60px;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 90%;
    text-align: center;
    padding: 30px;
}

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

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

.github__link {
    content: url(../General/github_logo_white.png);
    height: auto;
    width: 50px;
}

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

.highlight {
    border-bottom: 4px solid rgb(255, 143, 171)
}

.main__button__container {
    display: grid;
    grid-template-rows: 1fr;
    align-items: left;
    padding: 0px 0px;
}

.resume__button__link {
    font-size: 24px;
    width: 250px;
    color: #fff;
    text-decoration: none;
    padding: 10px 0px;
    cursor: pointer;
    outline: none;
    background-color: #d04c73;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #742a40;
    transition: 0.1s;
}

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

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

@media screen and (max-width: 960px) {
    
    .main {
        background: #000000;
        background: linear-gradient(to right, #161616, #000000);
        padding-top: 50px;
    }

    .main__container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr .1fr;
        justify-content: center;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        height: 90%;
        text-align: center;
        padding: 0px 30px;
        /* background-color: #ff8fab; */
    }    

    .main__heading {
        font-size: 56px;
        margin-bottom: 12px;
        padding-right: 25px;
    }

    .main__description {
        font-size: 14px;
        padding-top: 15px;
        padding-right: 10px;
    }

    .main__description span {
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .main__img__container {
        display: grid;
        grid-template-rows: .2fr .2fr;
    }
    
    .main__image {
        margin: 10px;
        height: auto;
        width: 200px;
        border-radius: 50%;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -o-user-select: none;
        user-select: none;
    }
    
    .main__link__container {
        display: grid;
        grid-template-rows: 1fr;
        justify-content: center;
        align-items: center;
        max-width: 900px;
        margin: 0 auto;
        height: 90%;
        text-align: center;
        padding: 30px;
    }
    
    .linkedin__link {
        height: auto;
        width: 40px;
    }
    
    .github__link {
        height: auto;
        width: 40px;
    }
    
    .highlight {
        border-bottom: 4px solid rgb(255, 143, 171)
    }

    .main__button__container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 2fr;
        align-content: center;
        padding: 0px 50px;
    }
    
    .resume__button__link {
        font-size: 24px;
        width: 100%;
        color: #fff;
        text-decoration: none;
        padding: 10px 0px;
        cursor: pointer;
        outline: none;
        background-color: #d04c73;
        border: none;
        border-radius: 15px;
        box-shadow: 0 9px #742a40;
        transition: 0.1s;
    }
    
    .resume__button__link:hover {
        background-color: #b94366
    }
    
    .resume__button__link:active {
        background-color: #b94366;
        box-shadow: 0 5px #451926;
        transform: translateY(4px);
    }
}



/* ----------------------------------------------- */
/* EMPTY TAB */
/* ----------------------------------------------- */

.empty_tab {
    background: #000000;
    background: linear-gradient(to right, #161616, #000000);
    padding-top: 250px;
    padding-bottom: 250px;
}

.empty_tab__container {
    display: grid;
    grid-template-rows: 1fr;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


@media screen and (max-width: 960px) {
    .empty_tab {
        background: #000000;
        background: linear-gradient(to right, #161616, #000000);
        padding-top: 250px;
        padding-bottom: 250px;
    }
    
    .empty_tab__container {
        display: grid;
        grid-template-rows: 1fr;
        justify-content: center;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        height: 100%;
        text-align: center;
    }
}



/* ----------------------------------------------- */
/* 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%;
    }
}