body{
  background: #000;
  font-family: sans-serif;
}
.composition{
  position: fixed;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  background-size: cover;
  background-position: top center;
  opacity: 0;
}
.composition > *{
  opacity: 0;
}
.composition.active{
  opacity: 1;
}
.composition.active > *{
  opacity: 1;
  transition: .3s linear opacity;
  transition-delay: 1s;
}
h1{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  font-size: 3.2em;
  font-family: Helvetica, Arial, sans-serif;
  font-style: italic;
  text-transform: uppercase;
  padding: 0 20%;
  height: 50vh;
}
h1 span{
  padding: 0 1em;
  display: inline;
}
h1 em{
  padding: 0 0;
}
.fg{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.cp{
  position: absolute;
  bottom: -5px;
  right: 0;
  left: 0;
  text-align: center;
}
.cp img{
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.5));
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.5));
}

@media (max-width: 480px) {
  h1{font-size: 2.5em; }
  .cp img {width: 100%; }
    }