html, body {
    margin: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
}

#background {
	background-color: lightgray;
	width: 100%;
  min-height: 100%;
  padding-bottom: 20px;
  min-height: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;

}

#content {
  background-color: white;
  margin: auto;
  position: relative;
  width: 935px;
  top: 20px;
  min-height: 400px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px gray;
  overflow: auto;
}

#header {
  background-color: white;
  margin: auto;
  width: auto;
  height: 120px;
}

#nav {
  background-color: lightgray;
  margin: auto;
  width: 100%;
  position: relative;
  height: 40px;
  display: table;
  table-layout: fixed;
}

#nav-fixed {
  background-color: lightgreen;
  margin: auto;
  width: 100%;
  position: fixed;
  top: 0px;
  height: 40px;
  display: table;
  table-layout: fixed;
}

.name {
  font-size: 50px;
  margin-left: 30px;
  padding-top: 30px;
}

.white-text {
  color: #ffffff;
}

.content-text {
  margin-left: 30px;
  margin-right: 30px;
}

.block {
  display: table-cell;
  height: auto;
  text-align: center;
  vertical-align: middle;
  padding: 0px;
}

.block a {
  height: inherit;
  width: inherit;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
}

/* unvisited link */
.block a:link {
    color: #000000;
}

/* visited link */
.block a:visited {
    color: #000000;
}

/* mouse over link */
.block a:hover {
    color: #000000;
}

/* selected link */
.block a:active {
    color: #000000;
}

.current {
  font-weight: bold;
  letter-spacing: 0.2px;

}

#photo {
  width: 100%;
  margin: auto;
  position: relative;
  height: 300px;
  background-image: url("../images/new_york.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

#resume {
  width: 100%;
  height: 1130px;
  margin: auto;
  position: relative;
  background-image: url("../images/resume.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.project-card {
  width: 895px;
  height: 300px;
  margin: auto;
  position: relative;
  margin-top: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding: 0px;
}

.crappy-bird {
  background-image: url("../images/crappy-bird.jpg");
}

.webcal {
  background-image: url("../images/webcal.jpg");
}

.rae-burket {
  background-image: url("../images/rae-burket.jpg");
}

.project-card a {
  height: inherit;
  width: inherit;
  display: block;
  padding-bottom: 0px;
  text-decoration: none;
}

.project-card:hover {
  box-shadow: 0 0 15px black;
  /*transition: box-shadow 0.1s ease-in;*/
}

.materialboxed {
  cursor: zoom-in;
  position: relative;
  -webkit-transition: opacity .4s;
  -moz-transition: opacity .4s;
  -o-transition: opacity .4s;
  -ms-transition: opacity .4s;
  transition: opacity .4s; }

.materialboxed:hover {
  will-change: left, top, width, height; }

.materialboxed:hover:not(.active) {
  opacity: .8; }

.materialboxed.active {
  cursor: zoom-out;
}

.mini-container {
  display: inline-block;
  float: left;
  width: 285px;
}

.img-div {
  float: left;
  clear: left;
  /*position: relative;*/
  overflow: visible;
  display: block;
  /*height: 191px;*/
  /*width: 33.33%;*/
}

.img-div img {
  height: 100%;
  overflow: hidden;
  position: center;
  padding: 2px;
}

/*Following CSS for Photography Grid*/

.image-zoom-container {
  display: block;
  list-style: none;
  font-size: 0px;
  margin-left: 35px;
  margin-right: 35px;
  margin-top: 35px;
}
.zoom-container {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 33.33%;
  height: 200px;
  font-size: 16px;
  font-size: 1rem;
  border: 1px solid #fff;
  vertical-align: top;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.zoom-container img {
  display: block;
  height: auto;
  -webkit-transition: all .5s ease; /* Safari and Chrome */
        -moz-transition: all .5s ease; /* Firefox */
        -ms-transition: all .5s ease; /* IE 9 */
        -o-transition: all .5s ease; /* Opera */
        transition: all .5s ease;
}

.portrait img {
  width: 100%;
}

.landscape img {
  height: 100%;
}

.zoom-container .zoom-caption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: rgba(0, 0, 0, .5);
  -webkit-transition: all .5s ease; /* Safari and Chrome */
        -moz-transition: all .5s ease; /* Firefox */
        -ms-transition: all .5s ease; /* IE 9 */
        -o-transition: all .5s ease; /* Opera */
        transition: all .5s ease;
}
.zoom-container .zoom-caption h3 {
  display: block;
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.5em;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #fff;
  margin: 23% 0 0;
  padding: 10px 0;
  border-top: 5px solid rgba(255, 255, 255, .15);
  border-bottom: 5px solid rgba(255, 255, 255, .15);
}
.zoom-container:hover img {
  -webkit-transform:scale(1.25); /* Safari and Chrome */
        -moz-transform:scale(1.25); /* Firefox */
        -ms-transform:scale(1.25); /* IE 9 */
        -o-transform:scale(1.25); /* Opera */
         transform:scale(1.25);
}
.zoom-container:hover .zoom-caption {
  background: none;
}
 
@media (max-width: 767px) {
  .zoom-container {
    width: 50%;
  }
}
 
@media (max-width: 480px) {
  .zoom-container {
    width: 100%;
  }
}



