
/******************
//  Mobile
******************/
html, body {
  background: #000000;
  color: #ffffff;
  font-family: Oswald, "Open Sans";
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
  text-align: center;
  overflow-x: hidden;
}

body {
  perspective: 1px;
  transform-style: preserve-3d;
}

ul, li {
  list-style: none;
  padding: 0;
}

h2 {
  font-size: 32px;
  margin-bottom: 22px;
}

h3 {
  font-weight: 400;
}

h4 {
  font-weight: 500;
  line-height: normal;
  margin: 0 auto;
}
h4 + p {
  font-size: 16px;
  margin: 0 auto 10px;
}

p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  margin: 22px auto;
  width: 80%;
}

a {
  color: #cccccc;
  font-weight: 500;
  line-height: 2;
  text-decoration: none;
}
a:hover {
  color: #eeeeee;
}

img {
  display: block;
  margin: 0 auto 30px;
  width: 100%;
  max-width: 400px;
}
img:hover {
  cursor: pointer;
}

hr {
  width: 120px;
}

header {
  width: 100%;
}
header nav {
  background-color: #000000;
  height: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}
header nav img {
  height: 64px;
  width: 150px;
}
header nav ul {
  padding: 15px 0;
  margin: 0;
  width: 100%;
}
header nav ul li {
  display: inline-block;
  padding: 0 7.5px;
}
header nav ul li a {
  color: #ffffff;
  font-size: 18px;
  text-decoration: 0;
}
header nav ul li a:hover {
  color: #c3c3c3;
}

footer .legal {
  padding: 15px;
  background: #333;
}
footer a {
  font-size: 16px;
}

.parallax {
  background-attachment: initial;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
  position: relative;
  opacity: 0.9;
}
.parallax .text {
  color: #ffffff;
  font-size: 36px;
  margin: 0;
  position: absolute;
  text-align: center;
  top: calc(50% - 50px);
  width: 100%;
}
.parallax .text h1, .parallax .text h4 {
  margin: 0;
  text-shadow: 3px 3px 2px #000000;
}
.parallax .text h1 {
  font-size: 36px;
}
.parallax .text h4 {
  font-size: 20px;
  text-shadow: 1px 1px 1px #000000;
}
.parallax.first {
  background-image: url("../images/white-cheese1.jpg");
  height: 73vh;
}

.socials ul {
  padding: 0;
}
.socials ul li {
  display: inline-block;
  padding: 0;
}
.socials ul li img {
  color: #ffffff;
  height: auto;
  filter: sepia(40%);
  width: 50px;
}
.socials ul li img:hover {
  opacity: 0.5;
}
.socials ul li img:last-child {
  border-radius: 50%;
  padding: 5px;
}

.images .img-wrap {
  display: inline-block;
}
.images .img-wrap img {
  height: auto;
  width: 150px;
  position: relative;
}
.images .img-wrap img:hover {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.6s ease-in-out;
}
.images .img-wrap h4 {
  font-size: 14px;
}

.container {
  display: inline-block;
  margin: 0 auto;
  padding: 0 15px;
}
.container .row {
  padding: 10px 0;
}

.no-mobile {
  display: none;
}

.mobile-only {
  display: block;
}

#album h2, #album h3 {
  margin: 5px;
}
#album p {
  font-size: 14px;
}
#album img {
  display: block;
  margin: 10px auto 30px;
}

#contact a img {
  width: 150px;
  height: auto;
}
#contact a:hover img {
  opacity: 0.5;
}

#photo img {
  max-width: 620px;
}

/******************
//  Tablet
******************/
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  header nav ul {
    margin: 0;
  }
  header nav ul li {
    padding: 10px;
    font-size: 20px;
  }
  header nav ul li a {
    font-size: 22px;
  }
  .row {
    display: block;
  }
  .row img {
    max-width: 500px;
  }
  .parallax {
    background-attachment: fixed;
    height: 50vh;
  }
  .parallax .text h1 {
    font-size: 100px;
  }
  .parallax.first {
    height: 100vh;
  }
  .images {
    margin: 0 auto;
    width: 550px;
  }
  .images .img-wrap {
    padding: 15px;
  }
  .images .img-wrap img {
    width: 230px;
  }
  .images .img-wrap h4 {
    font-size: 18px;
  }
  .socials {
    padding: 0;
  }
  .container {
    display: block;
    padding: 30px 60px;
  }
  .container .row {
    display: block;
    margin: 0 -15px;
    padding: 0;
  }
  .container .row div {
    padding: 0 15px;
  }
  .no-mobile {
    display: block;
  }
  .mobile-only {
    display: none;
  }
  #album p {
    font-size: 16px;
    width: auto;
  }
}
/******************
//  Desktop
******************/
@media (min-width: 1200px) {
  h2 {
    font-size: 44px;
  }
  p {
    font-size: 20px;
    width: 60%;
  }
  header nav {
    background-color: transparent;
    width: auto;
  }
  header nav img {
    float: left;
  }
  header nav ul {
    float: right;
    margin: 15px 0;
    width: auto;
  }
  header nav ul li {
    padding: 0 15px;
  }
  header nav ul li a {
    font-size: 24px;
  }
  .parallax {
    background-attachment: fixed;
    height: 75vh;
  }
  .parallax .text h1 {
    font-size: 120px;
  }
  .parallax.first {
    height: 100vh;
  }
  .images .img-wrap {
    padding: 15px;
  }
  .images .img-wrap img {
    width: 250px;
  }
  .images .img-wrap h4 {
    font-size: 22px;
  }
  .socials {
    padding: 0;
  }
  .container {
    display: block;
    padding: 10px 120px;
  }
  .container .row {
    display: block;
    margin: 0;
  }
  .container .row div {
    padding: 0 15px;
  }
  .no-mobile {
    display: block;
  }
  .mobile-only {
    display: none;
  }
  #about.container {
    padding: 10px 15px;
  }
  #album p {
    font-size: 18px;
  }
  #photos .row {
    display: inline-block;
  }
  #photos .row img {
    max-width: 620px;
  }
  #contact .row {
    margin: 0 -15px;
    padding: 0;
  }
}

/*# sourceMappingURL=style.css.map */
