.full-screen-image {
  height: 100vh;
  position: relative;
}
.full-screen-image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-screen-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}
.full-screen-image img {
  z-index: -1;
}

.full-screen-image--title {
  color: #f1cf63;
  text-align: center;
  font-family: Source Sans Pro, sans-serif;
  line-height: 3em;
  font-size: 8vw;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0.05em 0.05em 0.1em rgba(0, 0, 0, 0.3);
}

.full-screen-image--title-style {
  position: relative;
  font-family: Playfair Display;
  font-size: 0.4em;
  line-height: 1;
  font-weight: 400;
  font-style: italic;
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.5em;
  padding: 0.4em 0;
}
.full-screen-image--title-style::before, .full-screen-image--title-style::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 0.2em;
  background-color: currentColor;
  box-shadow: 0.05em 0.05em 0.1em rgba(0, 0, 0, 0.3);
}
.full-screen-image--title-style::before {
  top: 0;
}
.full-screen-image--title-style::after {
  bottom: 0;
}

.full-screen-image--word {
  opacity: 0;
  transform: translate(0, -0.2em);
  animation: come-home 0.5s ease forwards;
}
.full-screen-image--word:first-child {
  animation-delay: 1s;
}
.full-screen-image--word:last-child {
  animation-delay: 1.15s;
}

@keyframes come-home {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.full-screen-image--title-style {
  opacity: 0;
  transform: scale(0.5);
  animation: fade-in 0.3s ease 2s forwards, pop-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.4) 2s forwards;
}
.full-screen-image--title-style::before, .full-screen-image--title-style::after {
  opacity: 0;
  animation: come-home 1s ease 2.2s forwards;
}
.full-screen-image--title-style::before {
  transform: translate(0, -0.5em);
}
.full-screen-image--title-style::after {
  transform: translate(0, 0.5em);
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}
@keyframes pop-in {
  to {
    transform: scale(1);
  }
}
.article-content {
  font-size: 1.5em;
  font-family: Times, serif;
  max-width: 40em;
  margin: 0 auto;
  padding: 5em 2em;
  line-height: 1.6;
}
.article-content p:first-child:first-letter {
  float: left;
  font-size: 4.6em;
  line-height: 1;
  padding: 0 0.25em;
  margin-top: 0em;
  margin-left: -0.2em;
}

body {
  margin: 0;
}
