    /*GALLERY*/
    #gal {
	text-align-left;
	margin:auto;
	width: 860px;
}
    .galicon {
    display: inline;
    cursor: pointer;
    }

    element.style {
    animation: 6.82233s ease-in-out 0s infinite normal none running hoverhand;
    }

    .mw {
    display: inline-block;
    }

    .galicon img {
	  border: 3px solid white;
	  margin:6px;
	  box-shadow:0px 0px 0px #00000033;
	  transition: 0.2s ease-out;
      width:150px;
      height:160px;
}

.galicon img:hover {
	border: 3px solid white;
	margin:6px;
	box-shadow:8px 8px 0px #00000033;
	transform:translate(-6px, -6px);
	transition: 0.1s ease-out;
}

.galview {
  position:fixed;
  top: 0;
  bottom: 0;
  width:100%;
  height:100vh;
  opacity:0;
  pointer-events: none;
  z-index:1000;
	transition:0.35s ease-in-out;
}

.galicon:focus + .galview {
    position:fixed;
    top:0;
    bottom:0;
    width:100%;
    height:vh;
    opacity:100;
    pointer-events: auto;
    z-index:1000;
	  transition:0.35s ease-in-out;
} 

.galview img{
    position:absolute;
    top:100%;
    left:20%;
    transform:translate(-50%, -50%);
    border:2px solid #f4f4f4;
    box-shadow:0px 0px 32px #000000ff;
    max-height:90%;
    max-width:90%;
    transition:top 3s ease-in;
    background-color:#7f7f7f;
}

.galicon:focus + .galview img {
    transform:translate(-50%, -50%);
    top:50%;
    max-height:80%;
    max-width: 80%;
    transition:top 0.7s cubic-bezier(0,1,0.1,1);
    transform:translateX(-50%) translateY(-50%);
    top:50%;
}

.credit {
    font-family:elegant,monospace;
    color:#181818;
    font-size:18px;
    position:fixed;
    bottom:16px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
    background-color:#f4f4f4;
    padding:8px;
    box-shadow:0px 4px 8px #000;
}

.help {
    font-family:'Cousine', monospace;
    color: #640d5f;
    font-size:13px;
    position: fixed;
    top: 16px;
    left: 50%;
    transform:translateX(-50%);
    text-align: center;
    padding-top: 15px;
    background-color: #f4f4f4;
    padding: 8px;
    box-shadow:0px 4px 8px #000;
}

  img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

    @keyframe hoverhand {
        0% {transform: translate(0px, 4px);}
        50% {transform: translate(0px, -4px);}
        100% {transform: translate(0px, 4px);}
    }

    center {
    text-align: -webkit-center;
}