@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap');

:root {
    --col1: #c54737;
    --col2: #e3d8c4;
    --col3: #bcb3a2;
    --col4: #3b3735;
    --col5: #f7f0e4;
    --col6: #746e64;
    font-family: "Red Hat Text", sans-serif;
    color: var(--col4);
    font-optical-sizing: auto;
    font-style: normal;
}

* {
    margin: 0;
    position: relative;
    padding: 0;
}



body {
    z-index: 0;
    background-color: var(--col2);
    width: 100vw;
    height: 100%;
    overflow-x: hidden;
    background-image: radial-gradient(var(--col4) 1px, transparent 0);
    background-size: 40px 40px;
    background-position: -19px -19px;
}

.body_wrap {
    height: 100vh;
}

h1,
h2,
h3 {
    font-family: "Red Hat Display", sans-serif;
    font-style: normal;
    font-weight: 900;
}

header {
    height: 6vh;
    width: 100vw;
    max-width: 100vw;
    background-color: var(--col2);
    display: flex;
    z-index: 10;
    position: relative;
    padding-bottom: 2px;
    border-bottom: 2px var(--col4) solid;
}

.redes {
    width: min-content;
    padding: 5px;
    border-right: 2px var(--col4) solid;
    height: 5vh;
}

.p5Canvas {
    height: 100vh !important;
    overflow: hidden;
}

#scrolling_h_text {
    width: 100%;
    font-size: 3vh;
    margin-left: 10px;
    /* margin-right: 0; */
}

h1 {
    overflow-x: none;
    font-size: 50VH;
    font-kerning: normal;
    letter-spacing: -8vw;
}

.h2_wrap {
    /* background: linear-gradient(69deg, var(--col2) 0% 80%, transparent); */
    background-color: var(--col2);
    margin-top: 23vh;
    margin-bottom: 0;
}

h2 {
    font-weight: 900;
    /* margin-top: -5.8vh; */
    margin-bottom: 0.5vh;
    /* text-align: center; */
    font-size: 9.5vw;
    height: fit-content;
    width: 100%;
    text-align: center;
    line-height: 90%;

}

#t1 {
    font-weight: 600;
}

.h2_div {
    height: 4vh;
    color: var(--col4);
    /* background-color: var(--col3); */
    border-top: solid var(--col4) 2px;
    border-bottom: solid var(--col4) 2px;
    text-align: center;
    align-content: center;
    background: repeating-linear-gradient(45deg,
            var(--col2) 0% 4%,
            var(--col1) 4% 8%);

}

#h2_div_b {
    text-align: center;
    font-size: 150%;
}

.h2_div_bottom {
    margin-bottom: 0;
    margin-top: auto;
}

.main_title {
    min-height: 200px;
    /* max-height: 50vh; */
    /* background: linear-gradient(69deg, var(--col2) 0% 50%, transparent); */
}

.big_title {
    position: absolute;
    height: 50vh;
    max-height: 50vh;
    margin-right: auto;
    margin-top: -2px;
    /* max-width: 30vw; */
    min-height: 400px;
    border-top: 2px solid var(--col4);
    border-bottom: 2px solid var(--col4);
    background-image: linear-gradient(to right, var(--col2)0% 50%, transparent);

}

.p5Canvas {
    position: absolute;
    top: 0;
    z-index: -10;
    height: 100vh !important;
}

main {
    width: 100vw;
    height: 95vh;
}

.showcase {
    background-color: var(--col2);
    width: 70vw;
    margin: 10vh auto;
    min-height: 70vh;
    overflow: hidden;
    padding-top: 5vw;
    padding-left: 5vw;
    padding-right: 5vw;
    border: 3px dashed;
    /* border-image:
        repeating-linear-gradient(45deg,
            var(--col2) 0% 4%,
            var(--col3) 4% 8%) 1; */
}

.showcase_wrap {
    display: flex;
    overflow: hidden;
    background: var(--col2);
    align-content: center;
    height: fit-content
}

.showcase_preview {
    /* width: 21vw; */
    /* height: 21vw; */
    display: none;
    border-right: var(--col4) solid;
    padding-right: 3vw;
    transition: all;
}

#showcase_preview {
    opacity: 0%;
    transition: opacity 1s ease;
    animation: fadeInFromNone 2s ease alternate;
}

@keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
        margin-left: -20vw;
    }

    1% {
        display: flex;
        opacity: 0;
    }

    100% {
        display: flex;
        opacity: 1;
        margin-left: 0;
    }
}


#filter_wrap {
    display: flex;
    justify-content: space-between;

}

.v_bar {
    display: inline;
    /* width: 0; */
    border-left: 2px solid var(--col3);
    margin-right: 0.5vw;
    /* background-image: linear-gradient(to right, var(--col4), transparent) */
}

.filter_button {
    /* border-radius: 10px; */
    padding: 3px;
    /* background-color: var(--col3); */
    color: var(--col6);
    margin-bottom: 15px;
    height: fit-content;
    margin-right: 0.5vw;
    /* border: 2px solid var(--col4); */
}


.filter_button:hover {
    color: var(--col4);
}

.filter_button.clicked {
    color: var(--col1);
    background-color: var(--col2);
}

.filter_button>h3 {
    margin-top: auto;
    margin-bottom: auto;
}




#list {
    /* margin-left: 25%;*/
    margin-left: 36%; 
    margin-top: auto;
    margin-bottom: auto;
}

@keyframes marginTo0 {
    0% {
        margin-left: 20%;
    }

    10% {
        margin-left: 20%;
    }

    100% {
        margin-left: 0;
    }
}

.showcase_h2 {

    margin-left: 38%;
    width: fit-content;
    margin-right: 0

    /* margin-left: 20%; */
}

#showcase_preview_wrap {
    height: 21vw;
    display: flex;
    /* width: 35vh; */
}

#arrow {
    margin-left: 2vw;
    max-width: 2vw;
}

.showcase_image {
    max-width: 20vw;
    max-height: 20vw;
    margin-top: auto;
    margin-bottom: auto;
    border: var(--col3) 5px solid;
    border-image: repeating-linear-gradient(45deg,
            var(--col2) 0% 4%,
            var(--col3) 4% 8%) 1;
    padding: 5px;
    transition: border 1s ease;
}

.showcase_image:hover {
    border: var(--col4) 5px solid;
    animation: highlightBorder 1.5s ease;
    border-color: var(--col1);
}

@keyframes highlightBorder {
    0% {
        border-color: var(--col4);

    }

    50% {
        border-color: var(--col4);

    }

    100% {
        border-color: var(--col1);
    }
}

.showcase_list {
    min-width: fit-content;
    width: 60%;
}

.showcase_ol {
    /* max-height: 20vw; */
    border-width: 5px;
    border-top: var(--col4) solid;
    border-bottom: var(--col4) solid;
    overflow-y: scroll;
    list-style-type: decimal-leading-zero;
    scrollbar-color: var(--col3) var(--col2);
    scrollbar-width: auto;
}

.showcase_il {
    text-align: left;
    /* height: fit-content; */
    border-bottom: var(--col3) 2px solid;
    width: 100%;
    height: fit-content;
    padding-top: 1vh;
    padding-bottom: 1vh;
    color: var(--col3);
}

.showcase_il:hover {
    color: var(--col2);
}

a {
    text-decoration: none;
    color: var(--col4);
}

h3 {
    font-size: 200%;
    margin-top: -1vh;
    color: inherit;
    /* margin-bottom: -1vh; */
}


.profile {
    width: 55vw;
    max-width: 55vw;
    /* height: 30vh;
    max-height: 30vh; */
    background-color: var(--col3);
    margin: 40vh auto;
    padding: 5vw;
}

.profile_body {
    display: flex;
}

.profile_img_wrap {
    width: 15vw;
    height: 15vw;
    background-color: var(--col3);
    margin-right: 5vw;
    z-index: 2;
    /* background: repeating-linear-gradient(45deg,
            var(--col2) 0% 4%,
            var(--col3) 4% 8%); */
    border: 3px dashed var(--col1);
    padding: 2px;
}

.profile_img {
    width: auto;
    height: 100%;
}

.profile_wrap_main {
    /* width: 100%; */
    display: block;
}

.profile_title>h2 {
    text-align: left;
    font-size: 20vw;
}

.profile_wrap_title_img {
    display: flex;
}

.profile_textbox {
    width: 20vw;
}

.profile_desc {
    /* height: 100%; */
    margin: auto 0 0 0;
}

.profile_desc_contact {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 20vw;
}

.profile_corner_1 {
    margin: -5vw;
    position: absolute;
    width: 10vw;
    height: 10vw;
    background-color: none;
    border-top: var(--col1) 2vw solid;
    border-left: var(--col4) 2vw solid;
    border-bottom: var(--col3) 2vw solid;
    border-right: var(--col3) 2vw solid;
}

.profile_corner_fix {
    height: 100%;
}

#t7 {
    display: inline-block;
    width: max-content;
    font-weight: 548;
}

.profile_desc_contact>div {
    margin-right: 5vw;
}

.profile_corner_2 {
    font-size: 2.5vh;
    margin: auto 0 3vh auto;
    padding: 2px;
    align-content: end;
    text-align: center;
    background-color: var(--col1);
    height: fit-content;
    width: fit-content;
    /* background: repeating-linear-gradient(45deg, transparent 0% 4%, var(--col1) 4% 8%); */
}

#profile_tools {
    margin-left: auto;
    width: fit-content;
}

#profile_tools>div>img {
    display: inline;
    height: 30px;
    padding: 3px;
    margin: auto 0 0 auto;
}

#profile_tools>div {
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
}

.back_button {
    display: block;
    height: auto;
    width: 10vw;
    /* padding-left: 5vw; */
    margin-right: 0;
    margin-left: auto;
    border-left: var(--col4) 2px solid;
}

#back_button_img {
    height: 10vw;
    margin-right: 0;
    margin-left: auto;
}

.h2_wrap_wrap {
    display: flex;
    width: 100%;
    margin-bottom: -0.5vh;
}

.back_button a {
    display: block;
    height: 100%;
    width: 100%;
    background-color: var(--col1);
}

#Return_to_top {
    width: 10vh;
    height: 10vh;
    position: fixed;
    bottom: 5vh;
    right: -5vh;
    background-color: var(--col1);
    animation: fadein 2s;
    display: none;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }

}

footer {
    background-color: var(--col1);
    height: 25vh;
    color: var(--col4);
}

#footer_wrap {
    background-color: var(--col1);
    display: flex;
    margin: auto;
    border-top: var(--col2) 2vh solid;
    border-image: repeating-linear-gradient(45deg,
            var(--col2) 0% 4%,
            var(--col1) 4% 8%) 20;
}

.footer_info {
    padding: 5vh;
}

.footer_ol {
    list-style-type: decimal-leading-zero;
    margin-left: 5vw;
}

button {
    background: none;
    border: none;
    width: inherit;
    height: inherit;
}


span {
    font-size: 280px;
    color: transparent;
    -webkit-text-stroke: 2px var(--col1);
    text-transform: uppercase;
    display: inline-block;
    /* line-height: 0.75; */
    min-width: auto;
    font-weight: 800;
    transform: translateY(10vh);
}

.animate-text {

    animation: text-scrolling 20s linear infinite;
    will-change: transform;
    display: block;
    position: relative;
    white-space: nowrap;
    color: var(--col4);
    width: 100%;
    /* &.left {
      animation-direction: reverse;
    }
     */
}

@keyframes text-scrolling {
    0% {
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        transform: translate3d(0%, 0, 0);
    }
}

.big_ass_container {
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    z-index: -999;
    transform: skewY(-5deg);
    top: 50%
}

    .showcase_il>h3 {
        color: var(--col4);
    }

    .showcase_il>p {
        color: var(--col5);
    }



/* Tablet stuff from here */

@media (min-width: 501px) and (max-width: 900px) {

    .info_wrap {
        width: 90vw !important;
    }

    .card_image {
        max-width: 20vw !important;
    }
    #card_text {
        font-size: 100% !important;
    }

    .profile {
        max-width: 80vw;
        width: 80vw;
    }
}


/* mobile stuff from here */

@media (max-width: 500px) {


    main {
        overflow-x: hidden;
        height: fit-content;
    }

    #scrolling_h_text {
        overflow: hidden;
        font-size: 5vw;
    }

    /* .main_title {
        min-height: 130px;
    } */

    .big_title {
        max-height: 20vh;
        width: auto;
        min-height: 10px;
    }

    .h2_wrap {
        margin-top: 0%;
        /* padding-bottom: 0; */
    }

    .h2_div {
        height: 3vh;
    }

    #h2_div {
        margin-top: auto;
        margin-bottom: 0;
    }

    #h2_div_b {
        font-size: 100%;
    }

    .showcase {
        width: auto;
        height: fit-content;
        border-left: none;
        border-right: none;
        margin-top: 0;
    }

    .showcase_il {
        color: var(--col4);
    }

    .showcase_wrap {
        min-height: 70vh;
        display: block;
    }

    .showcase_preview {
        display: none !important;
        height: 25vh;
        /* border: none; */
    }

    #list {
        margin-top: 5vh !important;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* .showcase_ol {
        max-height: 100%;
    } */

    #t5 {
        margin-bottom: 5vh;
        font-size: auto;
    }

    h3 {
        margin-bottom: -1vh;
        font-size: 150%;
    }

    #showcase_preview_wrap {
        height: auto;
        width: 100%;
    }

    .showcase_image {
        max-width: 100%;
        max-height: 100%;
        width: auto !important;
        height: 80%;
        margin: auto !important;
    }

    .profile {
        width: 100%;
        max-width: 100%;
        padding: 0;
        /* overflow: hidden; */
    }

    .profile_title>h2 {
        font-size: 30vw;
    }

    .profile_img_wrap {
        width: 50vw;
        height: 50vw;
    }

    .profile_wrap_title_img {
        margin-bottom: 5vh;
    }

    .profile_side {
        width: 30%;
        /* display: none; */
    }

    .profile_textbox {
        margin: auto 0 0 0;
        width: auto;
    }

    .profile_corner_1 {
        display: none;
    }

    .profile_corner_2 {
        margin-top: -3vh;
        /* margin-left : auto; */
        width: fit-content;
        font-size: 70%;
        position: absolute;
        left: 37vw;
    }

    #t7 {
        color: #e3d8c4;
    }

    .profile_wrap_main {
        display: block;
        width: max-content;
        padding-bottom: 5vh;
        padding-top: 3vh;
    }

    .profile_desc>p {
        font-size: 12px;
    }

    .profile_desc {
        /* margin-top: 5vh */
        padding: 5vw;
    }

    .profile_desc_slogan_1 {
        width: inherit;
    }

    #profile_tools {
        width: 30px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 5vw;
    }



    .body_wrap {
        height: 70vh;
    }

    .big_ass_container {
        top: 10vh;
        display: none;
    }

    .footer_info {
        padding: 4vh;
        color: #e3d8c4;
    }

    .footer_ol {
        font-size: 80%;
        margin-left: 0;
    }

    .footer_li>a {
        color: #e3d8c4;
    }

    #Return_to_top {
        display: none !important;
    }
}