.projectsArea {
    width: 100%;
    height: 100%;
    font-family: var(--fontOne);
}

.areaIntroPA {
    padding: 25px 30px 35px 30px;
}

.areaIntroPA>h2 {
    width: fit-content;
    background: -webkit-linear-gradient(-45deg, #ffffff, #AA9CFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 23px;
    line-height: 1.27;
}

.areaIntroPA>p {
    font-weight: 400;
    color: #ACA0E4;
    font-size: 90%;
    max-width: 90%;
    margin: 15px 0 20px 0;
}

.PAButtonArea {
    width: fit-content;
    height: fit-content;
    padding: 7px;
    background-color: rgba(17, 10, 43, 0.8);
    border-radius: 3rem;
    box-shadow: inset 0 3px 1px #110A2B;
}

.PAButtonArea>button {
    border-radius: 3rem;
    border: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 12px 25px;
    font-size: 110%;
    font-weight: 500;
    background: url('/assets/misc/grains.webp') center center/cover no-repeat, radial-gradient(circle at 50% -50%, rgba(187, 165, 244, 0.95), #5F33D6 70%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 5px #110A2B;
    cursor: pointer;
}

.PAButtonArea>button>svg {
    width: 24px;
    height: 24px;
}

.PAButtonArea>button>span {
    margin-bottom: -2px;
}

.slidingProjects {
    height: 120px;
    margin-inline: auto;
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1) 20%,
            rgba(0, 0, 0, 1) 80%,
            rgba(0, 0, 0, 0));
    overflow: hidden;
    position: relative;
    width: 95%;
}

.oneProjectSlide {
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-name: scrollLeft;
    animation-timing-function: linear;
    background-color: rgba(99, 106, 182, 0.07);
    backdrop-filter: blur(3px);
    border-radius: 10px;
    height: 120px;
    left: max(calc(155px * 8), 100%);
    position: absolute;
    width: 170px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
}

.oneProjectSlide1 {
    animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.oneProjectSlide2 {
    animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.oneProjectSlide3 {
    animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.oneProjectSlide4 {
    animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.oneProjectSlide5 {
    animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.oneProjectSlide6 {
    animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.oneProjectSlide7 {
    animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.oneProjectSlide8 {
    animation-delay: calc(30s / 8 * (8 - 8) * -1);
}

@keyframes scrollLeft {
    to {
        left: -200px;
    }
}

@media only screen and (max-width: 1280px) {
    .areaIntroPA>h2 {
        font-size: 19px;
    }

    .areaIntroPA>p {
        font-size: 80%;
    }

    .PAButtonArea>button {
        font-size: 90%;
    }

    .PAButtonArea>button>svg {
        width: 19px;
        height: 19px;
    }
}

@media only screen and (max-width: 1080px) {
    .areaIntroPA>h2 {
        font-size: 23px;
    }

    .areaIntroPA>p {
        font-size: 90%;
    }

    .PAButtonArea>button {
        font-size: 110%;
    }

    .PAButtonArea>button>svg {
        width: 24px;
        height: 24px;
    }
}

@media only screen and (max-width: 768px) {
    .areaIntroPA>h2 {
        font-size: 19px;
    }

    .areaIntroPA>p {
        font-size: 80%;
    }

    .PAButtonArea>button {
        font-size: 90%;
    }

    .PAButtonArea>button>svg {
        width: 19px;
        height: 19px;
    }
}

@media only screen and (max-width: 576px) {
    .slidingProjects {
        margin: 0 0 35px 0;
    }
}