body {
font-family: Avenir Next, sans-serif;
font-weight: 200;
font-style: normal;
background-color: #000;
}

div.fixed {
  position: fixed;
  top: 2px;
  left: 2px;
  width: 200px;
  border: none;
    color: #ffffff;
}

.loop {
    position: fixed;
    top: 53px;
    left: 53px;
    width: 50px;
    height: 42px;
    padding: 4px;
}

.poop {
    width: 120px;
    height: 120px;
    padding: 20px;
    animation-name: spin;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    /* transform: rotate(3deg); */
    /* transform: rotate(0.3rad);/ */
    /* transform: rotate(3grad); */
    /* transform: rotate(.03turn);  */
}


@keyframes spin {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}



h2 {
    color: #fff;
    text-align: center;
    padding: 20px;
}

canvas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 100%;
    width: 100%;
}

/*
.wrapper{
  display:grid;
  grid-template-columns: auto;
  grid-template-rows: auto 30% 40% auto auto;
  grid-template-areas:
  "hd"
  "hero  "
  "casestudies"
  "contact"
  "ft";
}
*/
/* case studies */
.projects {
  align-items: stretch;
  display:grid;
  grid-area: casestudies;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  justify-self: stretch;
  margin:0;
}


#crosshair-h {
    width: 100%;
}

#crosshair-v {
    height: 100%;
}

.hair {
    position: fixed;
    top: 0;
    left: 0;
    margin-top: -3px;
    margin-left: -2px;
    background: transparent;
    border-top: 1px dotted #fff;
    border-left: 1px dotted #fff;
    pointer-events: none;
    z-index: 2;
}

#mousepos {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    margin: 10px;
    font: 14px arial;
    color: #000;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    z-index: 1;
}



.content{
  position:relative;
    padding: 20px;
    height: 200px;
    width: 200px;
}
.content .content-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  margin:0;
  padding:0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
  opacity: 1;
}

.content-image{
  width: 100%;
  height:100%;
}
.content-details {
  position: absolute;
  text-align: center;
  padding: 0 1rem;
  width: 100%;
  top: 40%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}


.fadeIn-bottom{
  top: 80%;
}

@media only screen and (min-width: 481px) {
    
}/*end media query*/