* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: url("img/cursor/right.png") 16 16, auto;
    font-family: Helvetica, sans-serif;/*'HelveticaNeue-Light',verdana;*/
    line-height: 1.5em;
}

.home-grid-container{
    padding: min(50px, 3%);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-evenly;
    align-items: center;
    height: auto;
    width: 100vw;
    max-width: 100%;
    gap: min(50px, 3%);
}

.home-grid-item{
    height: 100%;
    width: 100%;
    background-color: transparent;
    justify-self: stretch;
    align-self: stretch;
    aspect-ratio: 1 / 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.invis-link{
    display: block;
    height: 100%;
    width: 100%;
    cursor: url("img/cursor/right.png") 16 16, auto;
    -webkit-tap-highlight-color: transparent;
}

.overlay-container{
    position: relative;
}

.overlay-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    font-size: 0.85em;
    letter-spacing: 0.02em;
}

.text-body{
    padding: min(100px, 6%) min(350px, 20%) min(100px, 6%) min(350px, 20%);
    font-size: 0.75em;
    letter-spacing: 0.04em;
}

.slideshow{
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.slideshow-text-parent{
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 100vh;
    padding: min(100px, 10%) min(350px, 20%) min(100px, 10%) min(350px, 20%);
    font-size: 0.75em;
    letter-spacing: 0.04em;
    z-index: -1;
}

.project-page-body{
    padding: min(100px, 10%);
    height: 100vh;
}
.project-page-header{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: max(150px, 15%);
    width: 100%;
    cursor: url("img/cursor/cross.png") 16 16, auto;
    -webkit-tap-highlight-color: transparent;
}
.project-page-footer{
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: min(150px, 15%);
    width: 100%;
    cursor: url("img/cursor/cross.png") 16 16, auto;
    -webkit-tap-highlight-color: transparent;
}
.project-page-right{
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    cursor: url("img/cursor/right.png") 16 16, auto;
    -webkit-tap-highlight-color: transparent;
}
.project-page-left{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    cursor: url("img/cursor/left.png") 16 16, auto;
    -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 1200px){

    .home-grid-container{
        grid-template-columns: 1fr 1fr;        
    }  
    .overlay-content{
        font-size: 0.75em;
    }
    .slideshow-text-parent{
        padding: min(100px, 10%);
    }
    .text-body{
        padding: min(100px, 6%);
    }
}

@media only screen and (max-width: 600px){
    .text-body{
        padding-top: min(200px, 20%);
        margin-bottom   : min(200px, 20%);
        font-size: 0.65em;
    }
    .project-page-header{
        height: max(100px, 10%);
    }
    .project-page-footer{
        height: 0;
    }
    .overlay-content{
        font-size: 0.65em;
    }
    .slideshow-text-parent{
        font-size: 0.65em;
    }
}