html, body {
    color: #DF5700;
    overflow: hidden;
    scroll-behavior: smooth;
}

#work-list {
    display: grid;
    grid-template-columns: 15% 1fr 15%;
    grid-template-rows: 1fr;
    grid-template-areas: 
    ".  worklist    .";
    margin-top: 10vh;
    height: 80vh;
}

.list {
    grid-area: worklist;
    display: grid;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.image-preview {
    grid-area: image;
}

.list h1 {
    font-family: 'Recoleta Bold';
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: #FFFDF5;
    -webkit-text-stroke-color: #DF5700;
    font-size: 4em;
    line-break: strict;
    line-height: 0.9em;
    text-align: center;
}
.list h1:hover {
    -webkit-text-fill-color: #DF5700;
    -webkit-text-stroke-color: 0px;
    cursor: default;
}


.wrapper {
    -webkit-text-stroke-color: #DF5700;
    grid-area: worklist;
    display: grid;
    justify-items: center;
    align-items: center;
    text-align: center;
}



.project-title h1 {
    font-family: 'Recoleta Bold';
    font-size: 70px;
    -webkit-text-stroke-color: #DF5700;
    line-height: 65px;
    text-align: center;
  }
a, a:hover, a:visited, a:focus{
    text-decoration: none;
    color: #DF5700;
    z-index: 4;
}


.project-title h1 a, .project-title h1 a:visited {
    font-family: 'Recoleta Bold';
    font-size: 55px;
    color: #DF5700;
    line-height: 45px;
    z-index: ;
  }
  
  .project-categ {
    font-family: 'Apercu Light';
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
  }
  
  .cursor {
    position: absolute;
    width: 600px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: scale(0.1);
    opacity: 0;
    margin: -100px 0 0 -100px;
    background: url('/work-1.jpg') no-repeat 50% 50%;
    background-size: cover;
    z-index: 1;
  }
  
  .wrapper {
    width: 100%;
    height: 100%;
  }
  
  .project {
    padding: 12px;
    align-items: center;
    justify-content: space-between;
    flex-basis: 1;
    position: relative;
    z-index: 2;
    mix-blend-mode: difference;
    text-align: center;
  }
  
  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
  }
  .project-list {
      text-align: center;
  }


@media only screen and (max-width: 414px) {
    .list h1 {
        font-size: 2em;
    }

    .project-title h1 {
        font-family: 'Recoleta Bold';
        font-size: 2em;
    line-height: normal;}

    .project-title h1 a, .project-title h1 a:visited {
        font-family: 'Recoleta Bold';
        font-size: 2em;}

    #work-list {
            display: grid;
            grid-template-columns: 5% 1fr 5%;
            grid-template-rows: 1fr;
            grid-template-areas: 
            ".  worklist    .";
            margin-top: 10vh;
            height: minmax(min-content, max-content);
        }
    


}