.title-panel {
  width: 100%;
  height: 100vh;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0); /* IE6-9 */
  padding-top: 30vh;
  transition: opacity 0.5s;
  opacity: 1;
  will-change: opacity;
  text-shadow: 0 1px 2px #1d1e20;

  &--disabled {
    opacity: 0;
  }

  h1 {
    font-family: sans-serif;
    font-weight: 300;
  }

  &__inner {
    color: #fff;
    font-weight: 300;
    padding: 30px;
    margin: auto;
    text-align: center;
  }
}
