:root {
    --Dark-Theme: #1B1B1B;
    --Light-Text: #D9D9D9;
    --Dark-Text: #1F1F1F;
    --Gold: #B57F02;
    --Light-Dark-Text: #5D5D5D;
    --Mustard: #D3CFBA;
    --Dark-Green: #032C1C;
    --Dark-Purple: #31081F;
    --Middle-Dark-Theme: #262626;
}

html, body {
    background-color: var(--Dark-Theme, #1B1B1B);
}

* {
    margin: 0;
    padding: 0;
}

.header {
    flex-shrink: 0;
    background: var(--Dark-Theme, #1B1B1B);
    padding: 25px 50px 30px 50px;
}

.header-right {
    float: right;
}

.header-right > * {
    float: left;
}

.header-left > p > a {
    text-decoration: none;
}

.header-left-name {
    color: var(--Light-Text, #D9D9D9);
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    cursor: pointer;
}

.header-left-position {
    color: var(--Light-Text, #D9D9D9);
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    cursor: pointer;
}

.git-logo {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    display: block;
    margin-left: 20px;
    cursor: pointer;
}

.git-logo > a {
    color: var(--Gold, #B57F02);
    transition: 0.2s ease-in-out;
}

.git-logo > a:hover {
    color: var(--Light-Text, #D9D9D9);
    transition: 0.2s ease-in-out;
}

.git-logo > a:active {
    color: var(--Dark-Purple, #032C1C);
    transition: 0.2s ease-in-out;
}

.linkedin-logo {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    display: block;
    color: var(--Gold, #B57F02);
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.linkedin-logo > a {
    color: var(--Gold, #B57F02);
    transition: 0.2s ease-in-out;
}

.linkedin-logo > a:hover {
    color: var(--Light-Text, #D9D9D9);
    transition: 0.2s ease-in-out;
}

.linkedin-logo > a:active {
    color: var(--Dark-Purple, #032C1C);
    transition: 0.2s ease-in-out;
}

.nav {
    flex-shrink: 0;
    background: var(--Dark-Theme, #1B1B1B);
    padding: 25px 50px 30px 50px;
}

.nav-items {
    min-height: 1.8125rem;
    flex-shrink: 0;
    text-align: center;
}

.nav-item > div {
    display: inline-block;
}

.nav-item-selected {
    color: var(--Gold, #B57F02);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    cursor: pointer;
    text-decoration: none;
}

.nav-item-selected > div {
    transition: all 0.5s ease;
}

.nav-item-selected:hover > div {
    transition: all 0.5s ease;
    transform: scale(1.1);
}

.nav-item-selected:active {

}

.nav-item-selected > div {
    display: inline-block;
}

.nav-item-selected > div > a {
    display: inline-block;
}

.nav-item {
    color: var(--Light-Dark-Text, #5D5D5D);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    text-decoration: none;
}

.nav-item > div {
    transition: all 0.5s ease;
}

.nav-item:hover > div {
    transition: all 0.5s ease;
    transform: scale(1.1);
}

.nav-item:active {

}

.container {
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.center-title {
    flex-shrink: 0;
    color: var(--Mustard, #D3CFBA);
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 100;
    line-height: normal;
    letter-spacing: 0.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    text-align: center;
}

.grid {
    width: 90%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 5rem 1fr;
    grid-template-rows: 1fr 1rem 1fr;
    row-gap: 4rem;
    transition: all 1s ease;
}

.skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.label {
    height: 3.65rem;
    flex-shrink: 0;
    font-family: "Inter", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.label:hover {
    transform: scale(1.1);
}

.label:active {
    transform: scale(1.3);
}

.label > a {
    color: var(--Mustard, #D3CFBA);
    text-decoration: none;
}

.circle {
    width: 5rem;
    height: 5rem;
    background-color: var(--Mustard, #D3CFBA);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    transform: rotate(-0.001deg);
}

.circle:hover {
    transform: scale(1.2);
}

.circle:active {
    transform: scale(1.4);
}

.body {
    padding-top: 3rem;
}

.skills-full-box {
    margin: 0 auto 5rem;
    width: 80vw;
    min-height: 40rem;
    background-color: var(--Mustard, #D3CFBA);
    border-radius: 10px;
    flex-shrink: 0;
}

.skills-title {
    color: var(--Dark-Text, #1F1F1F);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-top: 2rem;
}

.line-under-title {
    float: right;
    width: 80%;
    height: 0.1rem;
    background: var(--Dark-Text, #1F1F1F);
}

.skill-line > * {
    list-style-type: none;
}

.skill-line {
    float: left;
    display: flex;
    flex-direction: column;
    width: 40%;
    padding-top: 1.5rem;
}

.skill-point {
    color: var(--Dark-Text, #1F1F1F);
    font-family: Inter, sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    line-height: normal;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.1s ease;
}

.skill-point > a {
    margin-top: 20px;
    margin-right: 0.5rem;
}

.skill-point:hover {
    transform: scale(1.05);
    transition: all 0.1s ease;
    font-weight: 700;
}

.skill-point-active {
    transform: scale(1.2);
    transition: all 0.1s ease;
    font-weight: 700;
}

.skill-point-active:hover {
    transform: scale(1.2);
    transition: all 0.1s ease;
    font-weight: 700;
}

.skill-info {
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.skill-info > .skill {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.skill-select-info {
    color: var(--Dark-Text, #1F1F1F);
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-style: italic;
    font-weight: 200;
    line-height: normal;
}

.skill-name {
    color: var(--Dark-Text, #1F1F1F);
    font-family: Inter, sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.skill-name > a {
    margin-right: 0.5rem;
}

.skill-subnames {
    color: var(--Light-Dark-Text, #5D5D5D);
    font-family: Inter, sans-serif;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-align: center;
}

.line-under-subnames {
    width: 80%;
    height: 0.1rem;
    background: var(--Dark-Text, #1F1F1F);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.skill-description {
    color: var(--Dark-Text, #1F1F1F);
    font-family: Inter, sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 70%;
    text-align: justify;
}

.line-under-skills {
    margin-top: 2rem;
    width: 80%;
    height: 0.15rem;
    background: var(--Dark-Text, #1F1F1F);
}

.skill-footer {

}

.skill-others {
    text-align: center;
}

.skill-others-name {
    display: inline-block;
    color: var(--Dark-Text, #1F1F1F);
    font-family: Inter, sans-serif;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 1rem 2rem;
    transition: all 0.2s ease;
}

.skill-others-name:hover {
    transition: all 0.2s ease;
    transform: scale(1.1);
}

.skill-others-name:active {

}

.skill-others-name > a {
    color: var(--Dark-Text, #1F1F1F);
    text-decoration: none;
}

.about-me-full-box {
    background: var(--Middle-Dark-Theme, #262626);
    margin: 0 auto 5rem;
    width: 1400px;
    min-height: 40rem;
    border-radius: 10px;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
}

.about-me-left {
    grid-area: 1 / 1 / 6 / 4;
    padding-top: 2.5rem;
    padding-left: 6rem;
}

.about-me-name {
    color: var(--Light-Text, #D9D9D9);
    font-family: Inter, sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.about-me-title {
    color: var(--Gold, #B57F02);
    font-family: Inter, sans-serif;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about-me-description {
    color: var(--Light-Text, #D9D9D9);
    text-align: justify;
    font-family: Inter, sans-serif;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.about-me-description > div > b {
    font-weight: 900;
    color: var(--Gold, #B57F02); /* TODO jeszcze nie wiem jaki kolor */
}

.about-me-description > * {
    margin-top: 0.8rem;
}

.about-me-right {
    grid-area: 1 / 4 / 6 / 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-me-photo-box {

}

.about-me-photo {
    width: 15rem;
    height: 15.4375rem;
    aspect-ratio: 240/247;
    border-radius: 2.5rem;
}

.about-me-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-me-links > * {
    margin-top: 0.5rem;
}

.about-me-links-github {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: .25rem;
}

.about-me-links-github > a > svg {
    width: 1.5rem;
}

.about-me-links-github > * {
    color: var(--Light-Text, #D9D9D9);
    text-align: justify;
    font-family: Inter, sans-serif;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.about-me-links-linkedin {
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
}

.about-me-links-linkedin > a > svg {
    width: 1.5rem;
}

.about-me-links-linkedin > * {
    color: var(--Light-Text, #D9D9D9);
    text-align: justify;
    font-family: Inter, sans-serif;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.about-me-links-linkedin-small {
    font-size: 0.6rem;
    text-decoration: none;
}

.about-me-links-cv > a {
    color: var(--Light-Text, #D9D9D9);
    text-align: justify;
    font-family: Inter, sans-serif;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-left: 5rem;
    padding-right: 5rem;
}

.project {
    min-width: 400px;
    max-width: 500px;
    padding-left: 10%;
    padding-right: 10%;
    height: 22rem;
    border-radius: 1rem;
    background: var(--Middle-Dark-Theme, #262626);
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border: 2px outset #000000;
}

.project * {
    text-decoration-line: none;
}

.project:hover {
    color: var(--Dark-Text, #1F1F1F);
    background: var(--Light-Text, #D9D9D9);
    transition: 0.5s ease-in-out;
}

.project:hover * {
    color: var(--Dark-Text, #1F1F1F);
    transition: 0.5s;
}

.project:hover .gold-color {
    color: var(--Dark-Purple, #31081F);
    transition: 0.5s;
}

.project:hover .gold-color * {
    color: var(--Dark-Purple, #31081F);
    transition: 0.5s;
}

.project-1 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: end;
}

.project-2 {
    grid-area: 1 / 2 / 2 / 3;
}

.project-3 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
}

.project-4 {
    grid-area: 2 / 2 / 3 / 3;
}

.project-header {
    padding-top: 2rem;
    margin-left: -5%;
}

.project-title {
    color: var(--Light-Text, #D9D9D9);
    font-family: Inter, sans-serif;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: inline;
}

.project-github {
    display: inline;
    flex-shrink: 0;
    margin-left: 20px;
    cursor: pointer;
}

.project-github > a > svg {
    width: 2.5rem;
    height: 2.5rem;
}

.gold-color {
    color: var(--Gold, #B57F02);
}

.project-github > a:hover {
    color: var(--Light-Text, #D9D9D9);
}

.project-github > a:active {
    color: var(--Dark-Purple, #032C1C);
}

.project-text {
    margin-top: 1.75rem;
    height: 7rem;
}

.project-description {
    width: 100%;
    color: var(--Light-Text, #D9D9D9);
    text-align: justify;
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.project-show-more {
    font-family: Inter, sans-serif;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    float: right;
}

.project-technologies {
    width: 100%;
    display: flex;
    flex-direction: row;
    color: var(--Light-Text, #D9D9D9);
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.project-technologies-1 > * {
    margin: 10px;
}

.project-technologies-2 > * {
    margin: 10px;
}

.projects-full {
    display: flex;
    justify-content: center;
}

.project-full {
    border: 4px outset #000000;
    width: 1400px;
    min-height: 600px;
    padding-bottom: 1rem;
    background: var(--Light-Text, #D9D9D9);
    border-radius: 1rem;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.project-full-header {
    padding-top: 2rem;
    margin-left: 5%;
}

.project-full-title {
    color: var(--Dark-Text, #1F1F1F);
    font-family: Inter, sans-serif;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: inline;
}

.project-full-github {
    display: inline;
    flex-shrink: 0;
    margin-left: 20px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.project-full-github > a > svg {
    width: 2.5rem;
    height: 2.5rem;
}

.project-full-github > a:hover {
    color: var(--Dark-Text, #1F1F1F);
    transition: 0.3s ease-in-out;
}

.project-full-github > a:active {
    color: var(--Dark-Purple, #032C1C);
    transition: 0.3s ease-in-out;
}

.project-full-texts {
    margin: 1rem 4%;
}

.project-full-description-header {
    margin-top: 2rem;
}

.project-full-description-header > * {
    display: inline;
}

.project-full-description-header > .project-full-description-question {
    color: var(--Dark-Text, #1F1F1F);
    font-family: Inter, sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.project-full-description-header > .project-full-description-answer {
    color: var(--Dark-Text, #1F1F1F);
    font-family: Inter, sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.project-full-text {
    color: var(--Dark-Text, #1F1F1F);
    font-family: Inter, sans-serif;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 2%;
    margin-top: 0.5rem;
}

.project-full-smaller-tittle {
    color: var(--Dark-Text, #1F1F1F);
    font-family: Inter, sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 2rem;
}

.project-full-smaller-tittle-github {
    color: var(--Dark-Text, #1F1F1F);
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.project-full-smaller-tittle-github:hover {
    color: var(--Light-Dark-Text, #5D5D5D);
}

.project-full-smaller-tittle-github:active {
    color: var(--Gold, #B57F02);
}

.project-full-line {
    height: 0.2rem;
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
    background-color: var(--Dark-Theme, #1B1B1B);
    width: 80%;
}

.project-full-technologies-box {
    padding-left: 2%;
}

.project-full-technologies {
    display: flex;
    flex-direction: row;
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;

}

.project-full-technologies > a {
    color: var(--Light-Dark-Text, #5D5D5D);
    font-family: Inter, sans-serif;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-right: 0.7rem;
}

.not-found {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.not-found > h1 {
    color: var(--Light-Text, #D9D9D9);
    font-family: Inter, sans-serif;
    font-size: 10rem;
}

.not-found > h4 {
    margin-bottom: 1rem;
    color: var(--Light-Text, #D9D9D9);
    font-family: Inter, sans-serif;
    font-size: 3rem;
}

.not-found > p > a {
    color: var(--Light-Text, #D9D9D9);
    font-family: Inter, sans-serif;
    text-decoration: none;
}
