* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

::selection {
  background-color: #656565;
  color: #FDFCFA;
}

html {
  font-size: 16px;
}

body {
  height: 100vh;
  width: 100%;
  display: flex;
}

nav {
  background: #FDFCFA;
  height: 100%;
  width: 100%;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6.25rem;
}

main {
  background: #FDFCFA;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 6.25rem;
}

header {
  height: 50%;
  width: 100%;
}

.hero-img {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 25%;
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

main > h2 {
  font-family: linotype-didot-headline, serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.75rem;
  color: #656565;
  letter-spacing: .15rem;
  word-spacing: .07rem;
  padding-top: 3rem;
  padding-right: 25%;
  line-height: 2rem;
}

main > p {
  font-family: 'open sans condensed', sans-serif;
  color: #656565;
  font-size: 1.06rem;
  letter-spacing: .15rem;
  word-spacing: .15rem;
  padding-top: 1rem;
  padding-right: 25%;
}

.photo-toggler > label:hover,
.about > a:hover,
.home > a:hover {
  text-decoration: line-through;
}

.home {
  text-indent: 1rem;
  border-left: 1px #656565 solid;
}

.photography,
.videography,
.webdesign,
.about {
  padding: 0;
  transition: padding 1s ease;
}

.photography:hover,
.videography:hover,
.webdesign:hover,
.about:hover {
  padding: 0 1rem;
  transition: padding .5s ease;
}

.inner-photo > li,
.inner-video > li,
.inner-web > li {
  padding: 0;
  transition: padding 1s ease;
}

.inner-photo > li:hover:nth-child(n),
.inner-video > li:hover,
.inner-web > li:hover {
  text-decoration: line-through;
  padding: 0 1rem;
  transition: padding .5s ease;
}

.mob-home {
  text-decoration: line-through;
}

@media only screen and (max-width: 768px) {
  nav {
    display: none;
  }
  .hero-img {
    padding: 0 1rem;
  }
  main > h2 {
    padding: 2.5rem 1rem 0 1rem;
  }
  main > p {
    padding: 1rem;
  }
}