html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em,
img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, q:before, blockquote:after, q:after {
  content: '';
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: bold;
}
* {
  box-sizing: border-box;
}


/* Typography */
body, html {
  background: #222;
  color: #fff;
}

html, body, h1, h2, h3, h4, p {
  padding: 0;
  margin: 0;
  font-family: arial, sans-serif;
  color: #fff;
}

h1 {
  font-weight: bold;
  font-style: italic;
  font-family: Georgia, Times, sans-serif;
  font-size: 64px;
  line-height: 64px;
  margin-bottom: 20px;
}

h2 {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 16px 0;
}

p {
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 24px;
}

p:last-of-type {
  margin-bottom: 48px;
}

.ben {
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
  font-weight: 200;
}

a {
  text-decoration: none;
  color: inherit;
  transition: .3s;
}

a:hover {
  text-decoration: none;
  color: #DEBA0A;

}


/*Header*/
header {
  margin: 36px;
  padding: 24px;
  border-bottom: 2px solid #fff;
  display: flex;
  justify-content: space-between;
}

.header-nav {
  font-size: 16px;
  line-height: 24px;
}
.header-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header-nav li {
  display: inline;
  margin: 0 12px;
}
.header-nav a {
  color: #fff;
  text-transform: uppercase;
}
.header-nav a:hover {
  color: #DEBA0A;
}



/*Footer*/
footer {
  text-align: center;
  margin: 48px auto 40px;
  font-size: 16px;
  line-height: 24px;
}


/*Main Container*/
main {
  max-width: 1480px;
  margin: 0 auto;
  padding: 20px 50px;
}

#intro p {
  max-width: 1250px;
}

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.photo-item {
  overflow: hidden;
  position: relative;
  margin: 8px;
  flex-basis: calc(33.33333% - 16px);
}
.photo-item img {
  max-width: 100%;
}

.photo-item h3 {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,60,.7);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: .3s;
}

.photo-item:hover h3 {
  opacity: 1;
}

.video-container {
  margin-bottom: 24px;
}

#about-me {
  max-width: 600px;
  margin:0 auto;
}

.about-me-img {
  display: block;
  margin: 12px auto;
}


/*Mobile Adjustments */
@media only screen and (max-width: 960px) {
  main {
    padding: 48px 40px;
  }
}

@media only screen and (max-width: 800px) {
  header {
    margin: 24px;
    padding: 16px;
  }
  main {
    padding: 24px 40px;
  }
  .photo-item {
    flex-basis: calc(50% - 16px);
  }
}

@media only screen and (max-width: 600px) {
  .photo-item {
    flex-basis: calc(100% - 16px);
  }
  h1 {
    font-size: 44px;
    line-height: 48px;
    margin-bottom: 16px;
  }
  p {
    font-size: 20px;
    line-height: 32px;
  }
  .ben {
    font-size: 28px;
    line-height: 28px;
  }
  .header-nav li {
  margin: 0 8px;
  }
}
