/* Add animation to "page content" */
  .slowFade {
    position: relative;
    -webkit-animation-name: slowFade;
    -webkit-animation-duration: .7s;
    animation-name: slowFade;
    animation-duration: .7s
  }

  @-webkit-keyframes slowFade {
    from { bottom:-100px; opacity:0 }
    to { bottom:0px; opacity:1 }
  }

  @keyframes slowFade {
    from{ bottom:-100px; opacity:0 }
    to{ bottom:0; opacity:1 }
  }

  #myDiv {
    display: none;
  }
  .indexLogoContainer {
      margin-top: 20%;
      text-align: center;
  }