@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 1s;
    background-color: var(--dark-theme);
}

.pt {
    display: block;
}

.eng {
    display: none;
}

:root {
    --dark-blue: #213fe1;
    --light-blue: #9ecefd;
    --dark-pink: #fe8ffe;
    --light-pink: #ffe1fd;
    --white: #fefcf7;
    --text-color: #333;
    --grey: #D3D3D3;
    --dark-theme: #151515;
}

.container {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-image: url('../images/Background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    color: black;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* ICONS */

.icons-container {
    padding: 1rem 1rem 1rem 1rem;
    display: flex;
    flex-wrap: wrap;
    width: 16rem;
    height: auto;
}

.icons-container button {
    background-color: transparent;
    border: none;
}

.icon {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    width: 7rem;
    height: auto;
    justify-items: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon h4 {
    color: var(--white);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 0.3rem 0 0 0;
    /* Ensures the text is close to the image */
    font-size: 0.9rem;
}

.linkedin {
    text-decoration: none;
}

.icon img {
    width: 7rem;
    height: 7rem;
}

.icon:hover {
    transform: scale(1.05);
    cursor: pointer;
}


.icon:hover::after {
    content: '';
    position: absolute;
    border-radius: 1rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--light-blue);
    opacity: 0;
    pointer-events: none;
}

.icon:hover::after {
    opacity: 0.5;
}

/* TABS NAVBARS*/
.work-tab,
.resume-tab,
.linkedin-tab,
.links-tab,
.github-tab,
.skills-tab,
.behance-tab,
.email-tab,
.projects-tab,
.youtube-tab,
.foto-tab,
.threed-tab,
.games-tab,
.note-tab,
.note-tab2,
.note-tab3,
.jr-tab,
.note-tab4,
.note-tab4,
.note-tab5,
.forum-tab {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background-color: var(--white);
    border: 0.2rem solid var(--dark-pink);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border-radius: 0.5rem;
}

.tab-navbar {
    width: 100%;
    height: auto;
    background-color: var(--dark-pink);
    color: var(--dark-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.tab-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 0.35rem;
}

.tab-icon h4 {
    color: var(--white);
}

.tab-icon img {
    width: auto;
    height: 3rem;
    margin-left: 1rem;
}

.button-exit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 1rem;
    width: 100%;
}

.button-exit button {
    background-color: transparent;
    border: none;
    font-size: 0.6rem;
    color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-exit button:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.tab-content {
    padding: 1rem;
    background-color: var(--dark-theme);
    color: var(--white);
}

.tab-content-resume {
    padding: 0;
    height: auto;
}

.tab-content-resume-object {
    width: 100%;
    height: auto;
}

/* NAVBAR */

.nav-bar {
    width: 100%;
    height: 4.5rem;
    background-color: var(--dark-blue);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    position: fixed;
    bottom: 0;
    z-index: 1000;
}

.windows-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.windows-button img {
    width: auto;
    height: 4rem;
    margin-left: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.windows-button img:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.language {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 2rem;
    width: 100%;
}

.language button {
    background-color: transparent;
    border: none;
    color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.language button:hover {
    transform: scale(1.2);
    cursor: pointer;
}

/* GITHUB*/

.github-repos-container {
    max-width: 35rem;
    background-color: transparent;
    border-radius: 1rem;
    overflow: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 .5rem 0 .5rem;
}

.github-repos-container ul {
    list-style-type: none;
    padding: 0;
}

.github-repos-container ul li {
    margin: 0.7rem 0;
    padding: 0.7rem;
    background-color: var(--dark-theme);
    border: 1px solid var(--white);
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.github-repos-container ul li:hover {
    background-color: black;
    transform: scale(1.01);
    z-index: 100;
}

.repo-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-color);
}

.repo-name {
    font-size: 1rem;
    font-weight: bold;
    color: var(--white);
}

.repo-description {
    font-size: 0.9rem;
    color: var(--white);
    margin-top: 5px;
}

.tab-content-github {
    background-color: var(--dark-theme);
    display: flex;
    flex-direction: row;
    padding: 1rem;
    gap: 1rem;
}

.data-github {
    margin: 0.7rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.data-github-part {
    height: auto;
    width: 30rem;
}

/* BEHANCE*/

.behance-tab {
    background-color: var(--dark-theme);
}

.behance-page {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem;
    overflow: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    height: 35rem;
    gap: 1.5rem;
}

.behance-work {
    width: 24rem;
    height: 20rem;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: black;
}

::-webkit-scrollbar-thumb {
    background: var(--light-pink);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-pink);
}

/* INSTAGRAM */

.tab-content-instagram {
    padding: 2rem 4rem 2rem 4rem;
    background-color: var(--dark-theme);
    color: var(--white);
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-gap {
    display: flex;
    gap: 1rem;
}

.tab-content-instagram a {
    text-decoration: none;
    color: var(--white);
    font-size: 1.3rem;
}

.tab-content-instagram i {
    font-size: 1.7rem;
}

/*WORK EXPERIENCE*/
.work-div {
    padding: 2rem;
    width: auto;
    border-radius: 1rem;
    border: var(--light-pink) solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-div:hover {
    background-color: black;
    transform: scale(1.02);
    cursor: pointer;
}

.work-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.work-div h1 {
    color: var(--light-pink);
}

.work-div p,
b,
h3 {
    color: var(--white);
}

.work-div li {
    color: var(--white);
    padding: 0.4rem;
}

.work-div h3 {
    font-style: italic;
}

.work-div span {
    font-size: 12px;
    font-style: italic;
    color: var(--light-pink);
}

.tab-content-work {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2rem 1rem 2rem 1rem;
    gap: 2rem;
    background-color: var(--dark-theme);
}

/* SKILLS */
.tab-content-skills {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    background-color: var(--dark-theme);
    color: var(--white);
    font-weight: 500;
}

.tab-content-skills-align {
    display: flex;
    flex-direction: column;
}

.skills {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.skills-bar {
    width: 10rem;
    height: 1rem;
    padding: 0.2rem;
    background-color: var(--white);
    border-radius: 1rem;
    margin-left: auto;
}

.skills-bar-inside {
    height: 100%;
    border-radius: 1rem;
    background-color: var(--dark-pink);
    display: flex;
    align-items: center;
    font-weight: 200;
    padding: 0 0 0 0.5rem;
    font-size: 12px;
}

.skills-bar-inside.illustrator {
    width: 80%;
}

.skills-bar-inside.photoshop {
    width: 65%;
}

.skills-bar-inside.after {
    width: 70%;
}

.skills-bar-inside.premiere {
    width: 45%;
}

.skills-bar-inside.inDesign {
    width: 65%;
}

.skills-bar-inside.figma {
    width: 80%;
}

.skills-bar-inside.html {
    width: 85%;
}

.skills-bar-inside.css {
    width: 65%;
}

.skills-bar-inside.javascript {
    width: 30%;
}

/* RESUME */

.tab-content-resume {
    background-color: var(--dark-theme);
    padding: 1rem 1rem 2rem 2rem;
    height: auto;
    color: var(--white);
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    align-items: flex-start;
}

.tab-content-resume p {
    font-size: 17px;
}

.tab-content-resume a {
    text-decoration: none;
    color: var(--dark-theme);
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tab-content-resume a:hover {
    transform: scale(1.01);
}

.a-button {
    display: flex;
    height: auto;
    width: 5.5rem;
    background-color: var(--light-pink);
    padding: 0.5rem;
    border-radius: 1rem;
}

/* CONTACT */

.tab-content-contact {
    background-color: var(--dark-theme);
    color: white;
    padding: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 30rem;
    margin: auto;
}

.contact-form1 {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 25rem;
}

.contact-form1 input,
.contact-form1 textarea {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: 0.3s ease-in-out;
}

.contact-form1 input::placeholder,
.contact-form1 textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form1 input:focus,
.contact-form1 textarea:focus {
    border-color: var(--dark-pink);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form1 textarea {
    resize: none;
    min-height: 120px;
}

.contact-form1 button {
    width: 107%;
    font-size: 16px;
    border-radius: 0.5rem;
    padding: 0.7rem;
    background-color: var(--dark-pink);
    font-weight: 600;
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.contact-form1 button:hover {
    background-color: var(--light-pink);
}

.confirmation1 {
    display: none;
    position: absolute;
    padding: 0.2rem 2rem 1rem 2rem;
    top: 50%;
    left: 50%;
    width: 15rem;
    transform: translate(-50%, -50%);
    z-index: 100;
    background-color: var(--dark-theme);
    border: 0.2rem solid var(--dark-pink);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border-radius: 0.5rem;
}

.cancel-button1 {
    background-color: var(--dark-pink);
}

.conf-buttons1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.contact-form2 {
    display: none;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 25rem;
}

.contact-form2 input,
.contact-form2 textarea {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: 0.3s ease-in-out;
}

.contact-form2 input::placeholder,
.contact-form2 textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form2 input:focus,
.contact-form2 textarea:focus {
    border-color: var(--dark-pink);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form2 textarea {
    resize: none;
    min-height: 120px;
}

.contact-form2 button {
    width: 107%;
    font-size: 16px;
    border-radius: 0.5rem;
    padding: 0.7rem;
    background-color: var(--dark-pink);
    font-weight: 600;
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.contact-form2 button:hover {
    background-color: var(--light-pink);
}

.confirmation2 {
    display: none;
    position: absolute;
    padding: 0.2rem 2rem 1rem 2rem;
    top: 50%;
    left: 50%;
    width: 15rem;
    transform: translate(-50%, -50%);
    z-index: 100;
    background-color: var(--dark-theme);
    border: 0.2rem solid var(--dark-pink);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border-radius: 0.5rem;
}

.cancel-button2 {
    background-color: var(--dark-pink);
}

.conf-buttons2 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

/*PROJECT EXPERIENCE*/
.project-div {
    position: relative;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 1rem;
    width: auto;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.tab-content-projects button {
    border: none;
    background-color: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.project-div img {
    margin: 0;
    width: 8rem;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-div:hover {
    transform: scale(1.05);
    cursor: pointer;
}


.project-div::after {
    content: '';
    position: absolute;
    border-radius: 1rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--light-blue);
    opacity: 0;
    pointer-events: none;
}

.project-div:hover::after {
    opacity: 0.5;
}

.project-div h4 {
    color: white;
    font-weight: 500;
}

.tab-content-projects {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    height: 25rem;
    padding: 2rem 4rem;
    background-color: var(--dark-theme);
}

/* NOTES */

.tab-content-note {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    padding: 2rem 4rem;
    background-color: var(--dark-theme);
}

.tab-content-note p {
    color: var(--white);
}

/* 3D */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 3.5rem;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.modal-content,
#caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


/* RESPONSIVE */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) and (orientation: portrait) {

    .work-tab {
        top: 45%;
    }

    .tab-content-work {
        height: 20rem;
    }

    .work-div h1 {
        color: var(--light-pink);
        font-size: 22px;
    }

    .work-div p,
    b,
    h3 {
        color: var(--white);
        font-size: 16px;
    }

    .github-repos-container {
        overflow: visible;
    }

    .github-tab {
        top: 45%;
        background-color: var(--dark-theme);
    }

    .tab-content-github {
        width: 15rem;
        height: 25rem;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        overflow-y: auto;
        overflow-x: auto;
    }

    .data-github-part {
        height: auto;
        width: 15rem;
    }

    .tab-content-contact {
        width: 12rem;
    }

    .projects-tab,
    .youtube-tab,
    .threed-tab,
    .jr-tab,
    .games-tab,
    .games-tab,
    .forum-tab {
        top: 45%;
    }

    .tab-content-projects {
        height: 20rem;
    }

    .note-tab,
    .note-tab2,
    .note-tab3,
    .note-tab4,
    .note-tab4,
    .note-tab5 {
        top: 45%;
        width: 15rem;
    }

    .tab-content-note {
        height: 20rem;
        padding: 1.1rem;
    }

    .behance-tab {
        top: 45%;
        height: 30rem;
        overflow: hidden;
    }

    .tab-content-object {
        width: 18rem;
    }

    .behance-work {
        width: 15rem;
        height: 10rem;
    }

    .icons-container {
        width: 80%;
        gap: 3rem;
        padding: 3rem 2rem;
        justify-content: center;
    }

    .icon {
        width: 15vw;
    }

    .icon img {
        height: 7.5rem;
    }

    .icon h4 {
        font-size: 11px;
    }

    .icon:hover::after {
        opacity: 0;
    }

    .nav-bar {
        height: 3rem;
    }

    .windows-button img {
        height: 3rem;
    }

}

@media only screen and (min-width: 600px) and (orientation: portrait) {
    .icons-container {
        width: 90%;
    }
}

@media only screen and (min-width: 600px) and (orientation: landscape) {

    .work-tab,
    .github-tab {
        top: 45%;
        width: 30rem;
    }

    .tab-content-work {
        height: 7rem;
        gap: 3rem;
    }

    .work-div h1 {
        color: var(--light-pink);
        font-size: 22px;
    }

    .work-div p,
    b,
    h3 {
        color: var(--white);
        font-size: 16px;
    }

    .github-repos-container {
        overflow: visible;
    }

    .github-tab {
        top: 45%;
        background-color: var(--dark-theme);
    }

    .tab-content-github {
        width: 28rem;
        height: 10rem;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        overflow-y: auto;
        overflow-x: auto;
    }

    .data-github-part {
        height: auto;
        width: 28rem;
    }

    .email-tab {
        height: 15rem;
        overflow: hidden;
    }

    .tab-content-contact {
        width: 25rem;
        height: 7rem;
        overflow-y: auto;
        overflow-x: auto;
        align-items: flex-start;
    }

    .projects-tab,
    .youtube-tab,
    .threed-tab,
    .jr-tab,
    .games-tab,
    .games-tab,
    .forum-tab {
        top: 45%;
        width: 25rem;
    }

    .tab-content-projects {
        height: 7rem;
    }

    .project-div img {
        width: 6rem;
    }

    .note-tab,
    .note-tab2,
    .note-tab3,
    .note-tab4,
    .note-tab4,
    .note-tab5 {
        top: 45%;
        width: 30rem;
    }

    .tab-content-note {
        height: 10rem;
        padding: 1.1rem;
    }

    .behance-tab {
        top: 45%;
        height: 15rem;
        overflow: hidden;
    }

    .tab-content-object {
        width: 30rem;
    }

    .behance-work {
        width: 20rem;
        height: 18rem;
    }

    .icons-container {
        width: 90%;
    }

    .icon {
        width: 6rem;
    }

    .icon h4 {
        font-size: 13px;
    }

    .icon:hover::after {
        opacity: 0;
    }

    .nav-bar {
        height: 3rem;
    }

    .windows-button img {
        height: 3rem;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (orientation: portrait) {
    .work-tab {
        top: 45%;
        width: 35rem;
    }

    .tab-content-work {
        height: 30rem;
    }

    .work-div h1 {
        color: var(--light-pink);
        font-size: 22px;
    }

    .work-div p,
    b,
    h3 {
        color: var(--white);
        font-size: 16px;
    }

    .github-repos-container {
        overflow: visible;
    }

    .github-tab {
        top: 45%;
    }

    .tab-content-github {
        width: 25rem;
        height: 40rem;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        overflow-y: auto;
        overflow-x: auto;
    }

    .data-github-part {
        height: auto;
        width: 25rem;
    }

    .tab-content-contact {
        width: 20rem;
    }

    .projects-tab,
    .youtube-tab,
    .threed-tab,
    .jr-tab,
    .games-tab,
    .games-tab,
    .forum-tab {
        top: 45%;
        width: 28rem;
    }

    .tab-content-projects {
        height: 25rem;
    }
}

@media only screen and (min-width: 768px) and (orientation: landscape) {

    .work-tab,
    .github-tab {
        top: 45%;
        width: 50rem;
    }

    .tab-content-work {
        height: 25rem;
        gap: 3rem;
    }

    .icons-container {
        width: 50%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (orientation: portrait) {
    .work-tab {
        top: 45%;
        width: 45rem;
    }

    .tab-content-work {
        height: 40rem;
    }

    .work-div h1 {
        color: var(--light-pink);
        font-size: 22px;
    }

    .work-div p,
    b,
    h3 {
        color: var(--white);
        font-size: 16px;
    }

    .github-repos-container {
        overflow: visible;
    }

    .github-tab {
        top: 45%;
    }

    .tab-content-github {
        width: 25rem;
        height: 40rem;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        overflow-y: auto;
        overflow-x: auto;
    }

    .data-github-part {
        height: auto;
        width: 25rem;
    }

    .icons-container {
        width: 15rem;
        gap: 3rem;
        padding: 2rem;

    }

    .icon {
        width: 6rem;
    }

    .icon img {
        height: 8rem;
    }
}

@media only screen and (min-width: 992px) and (orientation: landscape) {
    .work-tab {
        top: 45%;
        width: 50rem;
    }

    .tab-content-work {
        height: 20rem;
        gap: 3rem;
    }

    .github-tab {
        top: 45%;
        width: 30rem;
    }

    .tab-content-github {
        width: 28rem;
        height: 20rem;
    }

    .data-github-part {
        height: auto;
        width: 28rem;
    }

    .email-tab {
        height: 32rem;
        overflow: hidden;
    }

    .tab-content-contact {
        width: 25rem;
        height: 30rem;
        overflow-y: auto;
        overflow-x: auto;
        align-items: flex-start;
    }

    .projects-tab,
    .youtube-tab,
    .threed-tab,
    .jr-tab,
    .games-tab,
    .games-tab,
    .forum-tab {
        top: 45%;
        width: 25rem;
    }

    .tab-content-projects {
        height: 20rem;
    }

    .project-div img {
        width: 6.5rem;
    }

    .note-tab,
    .note-tab2,
    .note-tab3,
    .note-tab4,
    .note-tab4,
    .note-tab5 {
        top: 45%;
        width: 35rem;
    }

    .tab-content-note {
        height: 17rem;
        padding: 1.1rem;
    }

    .tab-content-note {
        height: 10rem;
        padding: 1.1rem;
    }

    .behance-tab {
        top: 45%;
        height: 25rem;
        overflow: hidden;
    }

    .tab-content-object {
        width: 40rem;
    }

    .behance-work {
        width: 15rem;
        height: 10rem;
    }

    .icons-container {
        width: 30%;
        height: auto;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) and (orientation: portrait) {}

@media only screen and (min-width: 1200px) and (orientation: landscape) {

    .work-tab,
    .github-tab {
        top: 45%;
        width: 60rem;
    }

    .tab-content-work {
        height: 30rem;
        gap: 3rem;
    }

    .icons-container {
        width: 15rem;
        gap: 1rem;
    }

    .github-repos-container {
        overflow: hidden;
        overflow-y: auto;
        overflow-x: auto;
    }

    .github-tab {
        top: 45%;
    }

    .tab-content-github {
        width: 58rem;
        height: 30rem;
        display: flex;
        flex-direction: row;
        overflow: hidden;
        overflow-y: auto;
        overflow-x: auto;
    }

    .data-github-part {
        height: auto;
        width: 25rem;
    }

    .projects-tab,
    .youtube-tab,
    .threed-tab,
    .jr-tab,
    .games-tab,
    .games-tab,
    .forum-tab {
        top: 45%;
        width: 40rem;
    }

    .tab-content-projects {
        height: 20rem;
    }

    .project-div img {
        width: 8rem;
    }

    .behance-tab {
        top: 45%;
        height: 35rem;
        overflow: hidden;
    }

    .tab-content-object {
        width: 60rem;
    }

    .behance-work {
        width: 25rem;
        height: 15rem;
    }
}

@media only screen and (min-width: 1400px) and (orientation: portrait) {}

@media only screen and (min-width: 1500px) and (orientation: landscape) {

    .work-tab,
    .github-tab {
        top: 45%;
        width: 60rem;
    }

    .tab-content-work {
        height: 25rem;
        gap: 3rem;
    }

    .icons-container {
        width: 15rem;
        gap: 1rem;
    }

}
