@import url('https://fonts.googleapis.com/css?family=Roboto:100&display=swap');
@import url('https://fonts.googleapis.com/css?family=Caveat+Brush&display=swap');
@import url('https://fonts.googleapis.com/css?family=Chivo:400,400i&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');
@import url('https://unpkg.com/css.gg@2.0.0/icons/css/close.css');

@font-face {
    font-family: Franklin;
    src: url(../fonts/Franklin.ttf);
}

@font-face {
    font-family: Cooper;
    src: url(../fonts/Cooper.ttf);
}

*{
    margin:0;
    padding:0;
}

html{
    overflow: hidden;
    scrollbar-width: none;
    overscroll-behavior-y: none;
}

.crossDiv{
    position: fixed;
    display: none;
}

body{
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
}

.title-holder{
    position: absolute;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    pointer-events: none;
    overflow: hidden;
}

.main-container{
    display:flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
    padding-left: 5px;
}

.left-scrollable-container{
    display: flex;
    width: 50%;
    flex-direction: row;
    overflow-y: auto;
    scrollbar-width: none;
}

.left-scrollable-container::-webkit-scrollbar {
    width: 0 !important;
}

.right-scrollable-container{
    display: flex;
    width: 50%;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: none;
}

.header_bar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
}

.header {
    position: fixed;
    text-align: center;
    font-size: 18pt;
    left: auto;
    right: auto;
    animation: showAnimation 0.5s forwards;
    transition: all 500ms ease 0s;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
}

.headerImg{
    max-height: 4.5em;
}

.header-hidden{
    position: fixed;
    text-align: center;
    font-size: 1.6em;
    left: auto;
    right: auto;
    animation: hideAnimation 0.5s forwards;
    transition: all 500ms ease 0s;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
}

@keyframes hideAnimation {
    from {
        top: 0px;
    }
    to {
        top: -100px;
    }
    }

    @keyframes showAnimation {
    from {
        top: -100px;
    }
    to {
        top: 0px;
    }
    }

.right-scrollable-container::-webkit-scrollbar {
    width: 0 !important;
}

.left-column{
    display: grid;
    height: 100vh;
    width:100%;
    grid-template-rows: 5% 10% 85%;
}

.right-column{
    display: grid;
    height: 100vh;
    width: 50%;
    grid-template-rows: 5% 10% 85%;
}

.first-row{
    width: 100%;
    margin-top: 1em;    
}

.left-info-frame{
    height: 100vh;
    width: 100%;
    display: none;
}

#info-text:hover{
    color:#666666;
    cursor: crosshair;
}

.left-info-frame::-webkit-scrollbar {
    width: 0 !important;
}


.right-project-frame{
    height: 100vh;
    display: none;
}

.right-project-frame::-webkit-scrollbar {
    width: 0 !important;
}

.cross{
    z-index: 255;
    position: fixed;
    right: 15px;
    top: 15px;
    width: 22.5px;
    height: 22.5px;
    display: none;
    color:#000000;
}

.cross:hover{
    color: #666666;
    cursor: crosshair;
}


.exhibitions-column-flex{
    display: grid;
    height: 100vh;
    grid-template-rows: 5% 10% 85%;
}

.exhibitionYear{
    position: relative;
}

.exhibitionCategory{
    position: relative;
    text-align: right;
}

.hover-shows-image{
    flex-direction: row;
}

.hover-shows-image-div{
    max-width: 98%;
    display:grid;
    grid-template-columns: 1fr 65px 175px;
    justify-content: end;
}

.title-wrapper{
    display: inline-block;
    position: absolute;
}

.left-or-right-title{
    display:none;
    vertical-align: middle;
    font-size: 7em;
    text-align: left;
    pointer-events: none;
}

.hover-shows-name:hover{
    color: #666666;
    cursor: crosshair;
}

.hover-shows-image-div:hover{
    color: #666666;
    cursor: crosshair;
}

.instagram-text:hover{
    color: #666666;
}

.hover-image{
    display: none;
    position:absolute;
    bottom: 0;
    height: 85%;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    pointer-events: none;
}

.hover-image-right{
    display: none;
    position:absolute;
    bottom: 0;
    height: 85%;
    right:0;
    pointer-events: none;
}

.hamburger-menu-wrapper{
    display:none;
    flex-direction: column;
    font-size: 18pt;
    row-gap: 18pt;
}

.hamburger-menu-item{
    cursor: crosshair;
}


.hamburger-menu-item:hover{
    color:#666666;
    cursor: crosshair;
}

#info-text{
    display:"inline";
}


/*IF MOBILE*/
@media (max-width:800px){

    .header{
        padding-top: 5pt;
    }

    .headerImg{
        max-height: 4.5em;
        max-width: 100%;
    }

    #info-text{
        display:"none";
    }

    .main-container{
        padding-left: 0px;
        max-height: 100vh;
    }

    .left-scrollable-container{
        display: none;
        width: 100%;
    }

    .right-scrollable-container{
        display:none;
        width: 100%;
    }

    .hamburger-menu-wrapper{
        display:flex;
        height: 100%;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .hover-shows-image-div{
        grid-template-columns: 1fr 40px 100px;
    }

    .hover-image{
        display: none;
        position: absolute;
        bottom: 0;
        height: 85%;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: auto;
        pointer-events: none;
        overflow: hidden;
        max-width: 100%;
        margin-top: auto;
        top: 0;
    }
}
