html, body {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    overflow: scroll;
}


section {
    height: 100%;
    width: 100%;
}

main.profile-main {
    cursor: none;
}


#arrow {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 999999;
    background: url("../images/arrow.svg") no-repeat;
    pointer-events: none;
    opacity: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(10%) translateY(-50%) scale(4);
    object-fit: cover;
    mix-blend-mode: difference;
}

#circle-profile {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 999999;
    background: url("../images/PIKA.svg") no-repeat;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    mix-blend-mode: difference;
    filter: invert(1);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;

}


.scroll-div {
    height: 900vh;
    width: 100vw;
    z-index: 20;
}

body::-webkit-scrollbar {
    display: none;
}


.scroll-div {
    width: 95%;
    height: 6100vh;
    position: absolute;
    top: 0;
    left: 2.5%;
    overflow: scroll;
}


.profile-container {
    width: 95%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 2.5%;
    overflow: hidden;
}

.data-container {
    width: 100%;
    height: 100%;
}


.scroll-div::-webkit-scrollbar {
    display: none;
}

.profile-header-mobile {
    display: none;
}

.fixed-div {
    position: fixed;
    width: 100%;
    top: 0;
}

.topic-image {
    position: absolute;
    height: 100vh;
    left: 50%;
    top: 150vh;
    object-fit: cover;
    object-position: center;
    transform: translateX(-50%) translateY(-50%);
    width: 47.7vw;
    z-index: 10;
}


.topic-header {
    position: absolute;
    left: 150%;
    top: 50vh;
    color: white !important;
    width: 100%;
    text-align: left !important;
    transform: translateX(-50%) translateY(-50%);
    z-index: 11;
}

.topic-description {
    position: absolute;
    top: 15vh;
    right: 15%;
    color: white !important;
    width: 32%;
    font-size: 1.4vw;
    opacity: 0;
    text-align: unset;
}


.profile-header {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 60px;
    color: white !important;
}


.topic-year-container {
    color: white;
    background: transparent;
    z-index: 9;
    position: absolute;
    top: 14vh !important;
    right: 14vw;
    padding: 0 14vw;
}

.topic-year {
    transform: rotateX(90deg);
}


.text-hider {
    width: 34vw;
    height: 5vh;
    background: black;
    position: absolute;
    right: 14vw;
    top: 14vh;
    z-index: 8;
}

.topic-header-underline {
    width: 100vw;
    height: 1px;
    background: white;
    z-index: 999;
    position: fixed;
    left: 0;
    bottom: 12vh;
    visibility: hidden;
}


#ending-text-div{
    opacity: 0;
}

.ending-text {
    color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 60%;
    z-index: 8;
    transition-duration: 200ms;
    visibility: visible;
}

.ending-text > h1, h2, h3 {
    line-height: 3rem;
    font-size: 2.5em;
}


.ending-text > h2 > span {
    display: inline-block !important;
}


@media screen and (max-width: 1050px) {
    #arrow {
        display: none;
    }


    #circle-profile {
        display: none;
    }
}

@media screen and (max-width: 1300px) {
    .ending-text > h1, h2, h3 {
        line-height: 3vw;
        font-size: 2.5vw;
    }
}


@media screen and (max-width: 800px) {
    .ending-text > h1, h2, h3 {
        line-height: 6vw;
        font-size: 3.5vw;
    }
}


@media screen and (max-width: 992px) {


    .ending-text {
        position: unset;
        top: 0;
        left: 0;
        transform: translateY(0) translateX(0);
        margin-top: 20%;
    }


    .scroll-div {
        display: none;
    }

    .text-hider {
        display: none;
    }

    .profile-container {
        width: 100%;
        left: 0;
    }

    .topic-header {
        position: relative;
        text-align: center !important;
        margin-top: 50px;
        top: 0;
        left: 0;
        transform: unset;
    }

    .topic-description {
        position: relative;
        font-size: 16px;
        width: 70%;
        margin-top: 52px;
        opacity: 1;
        top: 0;
        right: 0;

    }


    .topic-year {
        font-size: 35px;
    }

    .topic-image {
        position: relative;
        transform: unset;
        top: 0;
        left: 0;
        width: 80%;
        margin-top: 10%;
    }

    .fixed-div {
        height: 75%;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-y: scroll;
        overflow-x: hidden;
        margin-top: 130px;
    }

    .profile-header-desktop {
        display: none;
    }

    .profile-header-mobile {
        display: block;
        position: relative;
        top: 0;
        left: 0;
        transform: unset;
        margin: 45% 0 100%;
    }


    .topic-year-container {
        position: relative;
        top: 120px !important;
    }


    .topic-year {
        transform: unset;
    }
}