#page-home {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  min-height: 100vh;
  flex-basis: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: -74px;
  padding-top: 74px;
}

#page-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/epk/Hyldr-EPK-title.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  animation-name: zoomInEffect;
  animation-duration: 5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  transform-origin: center center;
}

#logo {
  margin-top: 10px;
  height: 100px;
  filter: invert(100%);
}

#page-home p {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-style: italic;
  margin: 0;
      text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

#page-home h1 {
    text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

@keyframes zoomInEffect {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}