         #projectheader{
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        #arrows>div{
            display: inline-block;
            cursor: pointer;
        }
        #arrows>div>svg{
            width: 40px;
            height: 40px;
        }

        #navigation{
            height: 96%;
            width: 98%;
            position: absolute;
            transition: all .15s ease-in-out;
            top:0;
            left:0;
            margin: 1%;
            z-index: 1;
            pointer-events: none;
            display: none;
        }
        #navigation>*{
            pointer-events:auto;
            cursor: pointer;
        }
        #close{
            position: absolute;
            right: 2vh;
            top:2vh;
            height: 40px;
            width: 40px;
        }
        #navarrows>div{
            position: absolute;
            top: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
        }
        #navarrows>:first-child{
            left: 1%;
        }
        #navarrows>:last-child{
            right: -1%;
        }
        #placeholder{
            display: none;
        }
        #projectbox{
            display: flex;
            height: 100%;
            overflow: hidden;
            @media (max-width:1200px) {
                flex-direction: column;        
            }
        }
        #projectbox > *{
            height:50%;
            width:100%;
            position: relative;
            display: flex;
            @media (min-width:1200px) {
                flex-direction: column;
                height: 100%;        
            }
        }
        #projectboxRight{
            flex-direction: row-reverse;
            @media (min-width:1200px) {
                right: auto;
                flex-direction: column-reverse;  
            }
        }
        .project{
            height: 100%;
            width: 100%;
            box-sizing: border-box;
            flex-shrink: 0;
            color: var(--red);
        }

        .text{
            position: relative;
            padding: 0 5%;
            display: flex;
            flex-direction: column;
            background: white;
            color: var(--contrast);
            --project-color: #f6a427;
            --contrast: var(--gray);
            --base-filters: saturate(300%) brightness(120%);
        }

        .text::before, .text::after{
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            background: linear-gradient(30deg,var(--project-color),rgba(255, 255, 255, 0)  );
        }
        
        .text::before {
            filter: brightness(80%) var(--base-filters);
        }
        .text::after {
            filter: var(--base-filters);
            transform: rotate(180deg);
        }
        .text>*{
            z-index: 1;
        }
        .textscroll {
            overflow: auto;
            height: max-content;
        }

        .desc{
            display: block;
            @media (min-width: 1200px){
                display: none;
            }
        }
        .desc, .shortDesc{
            transition: all .15s ease-in-out
        }
        .info{
            text-align: center;
            width: 150px;
            padding: 10px 15px;
            border-radius: 100px;
            color: var(--project-color);
            margin: 20px 0 0 0;
            cursor:pointer;
            background-color: var(--contrast);
            font-weight: 600;
        }

        .info>p{
            margin: 0;
            filter: var(--base-filters);
        }

        .image>img{
            object-fit: cover;
            height: 100%;
            width: 100%;
        }

        .copyright{
            position: absolute;
            bottom: 5px;
            right: 10px;
            font-size: 10px;
            color: #919191;
            margin: 0;
        }

        .number{
            position: absolute;
            bottom: 10px;
            right: 15px;
            margin: 0;
            font-size: 1.8rem;
            font-family: 'Arvo', serif;
        }