* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

::selection {
  background-color: #656565;
  color: #FDFCFA;
}

html {
  font-size: 16px;
}

body {
  height: 100%;
  width: 100%;
  display: flex;
}

nav {
  background: #FDFCFA;
  min-height: 100vh;
  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;
}

.videocontainer {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
}

.videocontainer li {
  margin: 0 1.25rem 1.25rem 0;
  width: 100%;
  height: 100%;
  max-width: 600px;
}

.videocontainer div {
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.photo-toggler > label:hover,
.about > a:hover,
.home > a:hover {
  text-decoration: line-through;
}

.videography {
  text-indent: 1rem;
  border-left: 1px #656565 solid;
}

.home,
.photography,
.webdesign,
.about {
  padding: 0;
  transition: padding 1s ease;
}

.home:hover,
.photography:hover,
.webdesign:hover,
.about:hover {
  /*
  outline: 1px #656565 solid;
  outline-offset: -1px;
*/
  padding: 0 1rem;
  transition: padding .5s ease;
}

.inner-video > li:nth-child(n) {
  padding: 0;
  transition: padding 1s ease;
}

.inner-video > li:nth-child(2) {
  text-decoration: line-through;
  padding: 0 1rem;
}

.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;
}

.inner-photo > li,
.inner-web > li {
  padding: 0;
  transition: padding 1s ease;
}

.mob-videography > a > label {
  text-decoration: line-through
}

.mob-inner-video > li:nth-child(2) > a {
  text-decoration: line-through;
}

@media only screen and (max-width: 768px) {
  nav {
    display: none;
  }
  .videocontainer li {
    margin: 0 1.25rem .5rem 1.25rem;
  }
}