body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

html {
  box-sizing: border-box;
  height: 100%;
  font-size: 14px;
}

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
    width: 100%;
    font-size: 1.125rem;
    line-height: 1.5;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    color: #000000;
}

h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    font-family: 'Inknut Antiqua', serif;
    font-weight: 500;
    margin-bottom: 3px;
}

h2 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-family: 'Inknut Antiqua', serif;
  font-weight: 500;
  margin-bottom: 3px;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.5;
  font-family: 'Inknut Antiqua', serif;
  font-weight: 500;
  margin-bottom: 3px;
}


h4 {
    font-size: 0.875rem;
    line-height: 1.5;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    color: #ffffff;
}

p {
    margin-bottom: 20px;
    font-size: 1.125rem;
    line-height: 1.5;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
}

a {
    display: inline-block;
    color: #000000;
    transition: color 0.2s;
}

a:hover { color: #9d9d9d; }

.dad-trailer {

}

.portrait {
    position: relative;
    width: 100%;
    height: 100vw;
    background-image: url('../images/portrait.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.portrait .portrait-credit {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.data .data-content {
    padding: 20px;
}

.dad-info {
  background-color:  #fff;
  padding: 10px;
}

.dad-header,
.dad-footer {
  width: 100%;
  padding: 20px;
  text-align: center;
  background-color:#8a8a8a;
  color: #fff;
  margin-bottom: 10px;
}

.dad-footer {
  margin-bottom: 0;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}

.dad-footer p {
  min-width: 50%;
  text-align: center;
  margin-bottom: 0;
  font-size: 0.8rem;
  flex-grow: 1;
}

.dad-footer a {
  color: #fff;
}
.dad-footer a:hover {
  color: #000;
}

.dad-content {
  display: flex;
  flex-wrap: wrap;
}

.dad-facts {
  padding: 20px;
  background-color: #000;
  color: #fff;
  min-width: 100%;
}
.dad-facts p {
  margin-bottom: 10px;
}
.dad-facts a {
  color: #fff;
}

.dad-text {
  padding: 20px;
  font-family: 'PT Serif', serif;
  font-weight: 400;
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.dad-text h3 {
  text-align: center;
  font-weight: 600;
  font-family: 'PT Serif', serif;
}
.dad-text p {
  text-indent: 2em;
  margin-bottom: 0;
  font-family: 'PT Serif', serif;
  font-weight: 400;
}
.dad-text p:first-of-type {
  text-indent: 0;
}
.dad-text p:last-of-type {
  text-indent: 0;
  text-align: center;
}

.collapsible {
  display: block;
  position: relative;
}

.showtext,
.hidetext {
  position: absolute;
  bottom: 0;
  z-index: 100;
  text-align: center;
  left: 50%;
  width: 150px;
  margin-left: -75px;
  line-height: 20px;
  text-decoration: none;
}

.showtext svg,
.hidetext svg {
  width: 36px;
  height: 36px;
  display: inline-block;
}

.hidetext {display: none;}
.showtext:target {display: none;}
.showtext:target ~ .hidetext {display: block;}
.showtext:target ~ .dad-text-teaser {
   max-height: 3000px;
}
.showtext:target ~ .fade {
  opacity: 0;
}


.dad-text-teaser {
  position: relative;
  max-height: 400px;
  overflow: hidden;
  transition: max-height .5s ease;
  padding-bottom: 50px;
}

.fade {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255,255,255,1) 75%);
  height: 100px;
  margin-top: -100px;
  position: relative;
  opacity: 1;
  transition: .5s ease;
}



.video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.video-player {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.video-controls {
  right: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  bottom: 0;
  transition: all 0.2s ease;
}

.video-container:hover .video-controls {
  background-color: rgba(255,255,255,0.5);
}

.video-controls-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.video-controls.hide {
  opacity: 0;
  pointer-events: none;
}

.volume-controls {
  display: flex;
  align-items: center;
  margin-right: 10px;
  opacity: 0;
  transition: all 0.4s ease;
}

.video-container:hover .volume-controls {
  opacity: 1;
}

.volume-controls input {
  width: 100px;
  opacity: 1;
  transition: all 0.4s ease;
}

.volume-controls:hover input, .volume-controls input:focus {
  width: 100px;
  opacity: 1;
}



input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 8.4px;
  background: transparent;
  cursor: pointer;
  outline: none !important;
}

input[type='range']::-moz-focus-outer { border: 0; }

input[type=range]:focus {
  outline: none !important;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  cursor: pointer;
  border-radius: 1.3px;
  -webkit-appearance: none;
  transition: all 0.4s ease;
}

input[type=range]::-webkit-slider-thumb {
  cursor: pointer;
  -webkit-appearance: none;
  margin-left: -1px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: transparent;
}

input[type=range].volume {
  height: 5px;
  background-color: #666666;
}

input[type=range].volume::-webkit-slider-runnable-track {
  background-color: transparent;
}

input[type=range].volume::-webkit-slider-thumb {
  margin-left: 0;
  height: 12px;
  width: 12px;
  background: #666666;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 1.3px;
}

input[type=range]::-moz-range-thumb {
  height: 12px;
  width: 12px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 5px;
}

input[type=range]:focus::-moz-range-track {
  outline: none !important;
}

input[type=range].volume::-moz-range-thumb {
  border: 1px solid #666;
  background: #666;
}

button {
  cursor: pointer;
  position: relative;
  margin-right: 7px;
  font-size: 12px;
  padding: 3px;
  border: none;
  outline: none;
  background-color: transparent;
}

button * {
  pointer-events: none;
}

.playback-animation {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.initial-button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  border-radius: 80px;
}
.initial-button svg {
  height: 80px;
  width: 80px;
  fill: #fff;
  stroke: #fff;
}

.hidden {
  display: none;
}

svg {
  width: 28px;
  height: 28px;
  fill: #666666;
  stroke: #666666;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  html {
      font-size: 100%;
  }

  .portrait,
  .data {
      float: left;
      width: 50%;
      height: 100vh;
  }

  .data {
      position: relative;
  }

  .data .data-content {
      position: relative;
      top: 50%;
      transform: translateY(-50%);
      padding: 60px;
  }

  .dad-facts {
    max-width: 50%;
    min-width: auto;
    padding: 40px;
  }
  .dad-text {
    max-width: 50%;
    min-width: auto;
    padding: 40px;
  }
  .dad-info {
    padding: 10px;
  }
  .dad-footer p {
    max-width: 25%;
    min-width: auto;
  }
}