p::selection, * h1::selection, * h2::selection, * a::selection, * div::selection, * strong::selection {
    background-color: #ea475a !important;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1920px) {
    .console {
        transform: scale(1);
    }

    .console:hover {
        transform: scale(1.2);
    }

    .consoleDeco {
        transform: scale(1);
    }

    .abilityCard {
        transform: scale(1);
    }

    .icon-wrapper {
        transform: translateX(-100px);
    }
}

@media (min-width: 1921px) {
    .coolItemsIcon {
        position: absolute;
        transform: scale(0.2) translateX(0) !important;
        opacity: 0.4;
        transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    }
    
    .coolItemsIcon:hover {
        opacity: 0.9;
        cursor: url('/img/mainCursor2.cur'), auto;
        transform: scale(0.2) translateY(-25px) translateX(0) !important;
    }

    .icon-wrapper {
        transform: translateX(-255px);
    }
}

@media (max-width: 1919px) {
    .imageScaling {
        width: 40%;
    }

    .icon-wrapper {
        transform: translateX(-100px);
    }
}

@media (max-width: 1279px) {
    .icon-wrapper {
        display: none;
    }
}

@media (max-width: 1000px) {
    .imageScaling {
        width: 100% !important;
    }

    .console {
        display: none;
    }

    .consoleDeco {
        display: none;
    }

    .abilityCard {
        display: none;
    }

    .chatbot-container {
        display: none !important;
    }
}

.subtitle {
    transform: rotate(-7deg) translate(-20px, 70px);
    font-family: 'Meow Script';
    position: absolute;
    font-size: 4.6vh;
    left: 30px;
    top: 60px;
    color: white;
    display: none;
}

.white-content {
    position: relative;
    background-color: white;
    padding: 15px;
    margin-top: -10px;
    z-index: 10;
    display: grid;
    grid-column: 1 / span 1; /* Ustawienie w pierwszej kolumnie */
    justify-items: center; /* Wyśrodkowanie elementów poziomo */
    align-items: center; /* Wyśrodkowanie elementów pionowo */
    padding-bottom: 75px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
}

.white-content::selection {
    background-color: #ea4759 !important;
    color: white !important;
}

.white-content::-moz-selection {
    background-color: #ea4759 !important;
    color: white !important;
}

.content2 {
    position: relative;
    border-top: 5px groove white;
    border-bottom: 5px ridge white;
    background-image: url('/img/content2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px;
    padding-left: 15px;
    padding-right: 15px;
    z-index: 10;
    display: flex;
    gap: 10px;
    justify-content: center; /* Wyśrodkowanie elementów poziomo */
    align-items: center; /* Wyśrodkowanie elementów pionowo */
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
}

.content2Item1 p::selection, .content2Item1 h2::selection, .homeExperience2WindowTitle p::selection, .content2Item2 h2::selection, .content2Item2 code::selection {
    background-color: black !important;
    color: white !important;
}

.content2Item1 p::-moz-selection, .content2Item1 h2::-moz-selection, .homeExperience2WindowTitle p::-moz-selection, .content2Item2 h2::-moz-selection, .content2Item2 code::-moz-selection {
    background-color: black !important;
    color: white !important;
}

* br::selection, * br::-moz-selection {
    user-select: none !important;
}

.content2Item1 {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    background-image: url('/img/homeExperienceBackground1.jpg');
    background-size: cover; /* Upewnia się, że obraz wypełni cały div */
    background-repeat: no-repeat; /* Zapobiega powtarzaniu obrazu */
    background-position: left; /* Wyrównanie obrazu w środku */
    border-radius: 8px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

.content2Item2 {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    background-image: url('/img/homeExperienceBackground2.jpg');
    background-size: cover; /* Upewnia się, że obraz wypełni cały div */
    background-repeat: no-repeat; /* Zapobiega powtarzaniu obrazu */
    background-position: left; /* Wyrównanie obrazu w środku */
    border-radius: 8px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

.coolItemsSpace {
    height: 100%;
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    overflow: hidden;
    z-index: 2;
}

.coolItemsSector {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50%;
    top: 0;
    z-index: 3;
    pointer-events: none;
}

@media (max-width: 1600px) {
    .coolItemsSector {
        transform: scale(0.8);
    }
}

.icon-wrapper {
    margin-bottom: 20px; /* Odstęp między ikonami */
    height: 80px;
    pointer-events: none;
}

.coolItemsIcon {
    transform: scale(0.2);
    opacity: 0.4;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    pointer-events: auto;
    user-select: none;
}

/* Opcjonalnie usuń ostatni margines dla estetyki */
.icon-wrapper:last-child {
    margin-bottom: 0;
}

.coolItemsIcon:hover {
    opacity: 0.9;
    cursor: url('/img/mainCursor2.cur'), auto;
    transform: scale(0.2) translateY(-25px);
}

/* Styl aktywnej ikony */
.coolItemsIcon.active {
    opacity: 0.7;
}

.console {
    position: absolute;
    background-color: black;
    border: 3px dashed transparent;
    border-image: linear-gradient(to right, rgb(111, 177, 73) 70%, #ea4759 30%) 1;
    width: 800px;
    height: 500px;
    right: 5%;
    top: 110px;
    opacity: 1;
    color: rgb(111, 177, 73);
    padding: 15px;
    font-family: "VT323", monospace;
    font-size: 23px;
    line-height: 1;
    letter-spacing: 0.4px;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, opacity 0.1s ease-in;
    z-index: 10;
}

.console:hover {
    transform: scale(1.2) translateY(0);
}

.shine {
    position: relative;
    color: rgb(111, 177, 73); /* Kolor podstawowy */
    background: linear-gradient(to right, rgb(111, 177, 73), #ffffff 50%, rgb(111, 177, 73));
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

/* Definicja animacji shine */
@keyframes shine {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.consoleDeco {
    position: absolute;
    background-color: black;
    border-image: linear-gradient(to right, rgb(111, 177, 73) 70%, #ea4759 30%) 1;
    width: 800px;
    height: 500px;
    right: calc(5% - 30px);
    top: 140px;
    opacity: 1;
    z-index: -2;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.homeButtonAbout {
    background-color: white;
    color: #838383;
    border-radius: 30px;
    border: 5px solid #f5f5f5;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 35px;
    padding-right: 35px;
    cursor: url('/img/mainCursor2.cur'), auto;
    font-size: 16px;
    font-weight: 700;
    user-select: none;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
}

.homeButtonAbout:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
    border: 5px solid #ea4759;
    color: #ea4759;
}

@media (max-width: 1715px) {
    .console, .consoleDeco {
        transform: scale(0.8) translate(15%, -20%);
    }

    .console:hover {
        transform: scale(0.9) translate(15%, -15%);
    }
}

@media (max-width: 1439px) {
    .console, .consoleDeco {
        transform: scale(0.65) translate(25%, -35%);
    }

    .console:hover {
        transform: scale(0.75) translate(25%, -25%);
    }
}

@media (max-width: 1250px) {
    .console, .consoleDeco {
        transform: scale(0.5) translate(35%, -70%);
    }

    .console:hover {
        transform: scale(0.65) translate(30%, -50%);
    }
}

@media (max-width: 1920px) {
    .chatbot-container {
        transform: scale(0.9);
    }
}


@media (max-width: 1715px) {
    .abilityCard {
        transform: scale(0.8) translate(50%, -15%) !important;
    }
}

@media (max-width: 1439px) {
    .abilityCard {
        transform: scale(0.65) translate(60%, -30%) !important;
    }
}

@media (max-width: 1250px) {
    .abilityCard {
        transform: scale(0.5) translate(100%, -55%) !important;
    }
}

@media (max-width: 1920px) {
    .abilityCard {
        transform: scale(0.9) translate(15%, 0);
    }
}

@media (max-width: 1715px) {
    .chatbot-container {
        transform: scale(0.7) translate(20%, -20%);
    }
}

@media (max-width: 1439px) {
    .chatbot-container {
        transform: scale(0.65) translate(30%, -35%);
    }
}

@media (max-width: 1250px) {
    .chatbot-container {
        transform: scale(0.5) translate(40%, -60%);
    }
}

.homeProjectsContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 15px;
    margin-top: 150px;
}

.homeProjectsContainer h1 {
    text-align: center;
}

.homeProjectsDashedContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px) invert(1);
    -webkit-backdrop-filter: blur(4px) invert(1);
    gap: 50px;
    justify-content: center;
    align-items: center;
    border: 5px dashed #000000;
    border-radius: 20px;
    padding: 10px;
    width: 100%;
    max-width: 1600px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
}

* .homeProjectsDashedContainer p::selection, * .homeProjectsDashedContainer strong::selection, * .homeProjectsDashedContainer h1::selection {
    background-color: #119385 !important;
    color: white !important;
}

.homeProjectsMainContainer {
    position: relative;
    background-color: white;
    border: 5px solid #f5f5f5;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 8px;
}

.homeProjectImage {
    position: relative;
    width: 80%;
    min-width: 225px;
    max-width: 381px; /* Obraz zajmuje całą szerokość kontenera */
    height: auto; /* Zachowuje proporcje obrazu */
    object-fit: cover; /* Opcjonalnie: Przycinanie obrazu, aby wypełnić kontener */
    border-radius: 15px; /* Opcjonalnie: Zaokrąglone rogi */
}

.homeProjectMain img {
    transition: transform 0.1s ease-out;
}

.homeProjectMain img:hover {
    transform: scale(1.05);
}

.homeProjectImageImg {
    max-width: 381px;
}

.homeProjectMain {
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap;
}

.homeProjectDesc {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: start;
    max-width: 600px;
    min-height: 216px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f5f5f5;
}

.homeProjectButtonContainer {
    display: flex;
    align-items: end;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 10px;
}

.homeProjectButton1, .homeProjectButton2, .homeProjectButton3 {
    position: relative;
    font-weight: 900;
    font-size: 26px;
    background-color: #119385;
    padding: 10px;
    width: 100px;
    text-align: center;
    color: white;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ffffff;
    border-radius: 50px;
    transition: transform 0.2s ease-out, background-color 0.2s ease-out;
}

.homeProjectButton4, .homeProjectButton5, .homeProjectButton6 {
    color: #ea475a;
    font-weight: 700;
    transition: all 0.1s ease-out;
}

.homeProjectButton4:hover, .homeProjectButton5:hover, .homeProjectButton6:hover {
    color: #ff9fab;
}

.homeProjectButton1:hover, .homeProjectButton2:hover, .homeProjectButton3:hover {
    transform: translateY(-8px);
    background-color: #2bac9f;
}

.homeProjectDesc h1 {
    line-height: 1.3;
}

.homeProjectsDecoContainer1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap-reverse;
    gap: 50px;
}

.homeProjectsDecoContainer2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.homeProjectsDeco1 {
    position: relative;
    display: flex;
    background-color: black;
    border: 3px dashed transparent;
    border-image: linear-gradient(to right, rgb(111, 177, 73) 70%, #ffffff 30%) 1;
    color: rgb(111, 177, 73);
    padding: 15px;
    font-family: "VT323", monospace;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.4px;
    z-index: 10; /* Kontekst układu */
    transition: transform 0.1s ease-out;
}

.homeProjectsDeco1:hover {
    transform: scale(1.1);
}

.homeProjectsDeco2 {
    display: inline-block;
    position: absolute;
    background: black;
    border: 3px solid black;
    top: calc(100% + 3px);
    left: 9px;
    width: 100%;
    height: 5px;
}

.homeProjectsDeco3 {
    display: inline-block;
    position: absolute;
    background: black;
    border: 3px solid black;
    top: 5px;
    left: calc(100% + 3px);
    width: 5px;
    height: 100%;
}

.homeButtonProjects {
    background-color: white;
    color: #838383;
    border-radius: 30px;
    border: 5px solid #f5f5f5;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 35px;
    padding-right: 35px;
    cursor: url('/img/mainCursor2.cur'), auto;
    font-size: 16px;
    font-weight: 700;
    user-select: none;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
}

.homeButtonProjects:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
    border: 5px solid #27b6a7;
    color: #27b6a7;
}

.homeProjectsDashedContainerTitle {
    color: white;
    font-family: 'Astloch', system-ui;
    font-size: 6.5vh;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    margin-top: 15px;
    margin-bottom: -30px;
    font-weight: 700;
}

.homeButtonExperience {
    background-color: transparent;
    color: white;
    border-radius: 50px;
    border: 5px solid #f5f5f5;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 35px;
    padding-right: 35px;
    cursor: url('/img/mainCursor2.cur'), auto;
    font-size: 16px;
    font-weight: 700;
    user-select: none;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
}

.homeButtonExperience:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
    border: 5px solid #adadad;
    color: #adadad;
}

.content2Item2code {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    color: white;
    width: 100%;
    font-weight: 700;
    font-size: 1em;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.content2Item2code p {
    padding: 3px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    font-family: monospace;
}

.content2Item2codeBlock {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

* .content2Item2codeBlock p::selection {
    background-color: white !important;
    color: black !important;
}

* .content2Item2codeBlock p::-moz-selection {
    background-color: white !important;
    color: black !important;
}