/* WORK */
:root {
  --shadow-color: #fff;
}

.unalign{
    text-align: left;
}

.menus{
  position: relative;
  left: 0%;
  	display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.info {
    font-size: 1.5em;
    margin: 1em 0 1em 0;
    padding: 5px;
    color: #eee;
    white-space: nowrap;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}

.img-holder {
  flex-grow:1;
  margin: .3rem;
  /* overflow: hidden; */
}

.img-holder img {
  display: block;
  width: 100%;
  height: 10rem;
  object-fit: cover;
  transition-duration: 100ms;
  border : 2px solid var(--shadow-color);
}

/* input:hover ~ .pliable .container .img-holder img {
  height: 15rem;
} */

.img-holder img:hover {
  transform: translate(-15px, -10px);
  transition: 150ms;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 15px 10px var(--shadow-color);
}

.pliable{
cursor: url("../cur/pix1.png"), default;
font-family: monospace;
width:16vw;
/* width: 750px; */
transition:0.4s;
overflow: none;
filter: grayscale(1);
/* opacity: 0.6; */
}

input:hover ~ .pliable {
  width:33vw;
  filter: grayscale(0);
  opacity: 1;
}


#reel-container {
  box-sizing: content-box;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56%;
  margin: 0 0 7px 0;
}

#reel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#work {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(512px, 1fr));
  grid-gap: 7px;
  padding-bottom: 10px;
  }

#work img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  }

.wide {
  grid-row: span 9;
  }

.xtra-wide {
  grid-row: span 8;
  }

.square {
  grid-row: span 16;
  }

.tall {
  grid-row: span 20;
  }

  .small {
      font-size: 0.8em;
      color: var(--text-color);
  }

  .thin {
    font-family: monospace;
      font-size: 0.4em;
      color: #6a6a6a;
  }

  input{display:none;}

label{
cursor: url("../cur/pix2.png"), default;
}











  @media screen and (max-width: 1440px) {

    .menus{
      position: relative;
      left: 10%;
      	display: flex;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .unalign{
        text-align: left;
        font-size: 95%;
    }

    .img-holder img {
      display: block;
      width: 100%;
      height: 8rem;
      object-fit: cover;
      transition-duration: 100ms;
    }
    /* input:hover ~ .pliable .container .img-holder img {
      height: 10.6rem;
    } */


    .pliable{
    cursor: url("../cur/pix1.png"), default;
    width:200px;
    transition:0.4s;
    overflow: none;
    }

    input:hover ~ .pliable {
      width:440px;
    }
  }








  @media screen and (max-width: 1260px) {

    .content{
      margin: auto;
    }

    .menus{
      position: relative;
      left: 0;
      	display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #header{
      display: none;
    }
    .info{
      font-size: 3em;
    }
    .unalign{
        text-align: center;
        font-size: 90%;
    }

    .img-holder img {
      display: block;
      width: 100%;
      height: 12rem;
      object-fit: cover;
      transition-duration: 100ms;
    }
    /* input:hover ~ .pliable .container .img-holder img {
      height: 15rem;
    } */


    .pliable{
    cursor: url("../cur/pix1.png"), default;
    width:100%;
    transition:0.4s;
    overflow: none;
    filter: grayscale(0);
    }

    input:hover ~ .pliable {
      width:100%;
    }
  }
