@keyframes slide {
  50% {
    margin-left: 180px;
  }
}
:root body {
  background-color: black;
  margin: 0;
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow-x: hidden;
}
:root body .wrap {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
}
:root body .wrap .title {
  transition: ease 1s;
  animation: slide 5s infinite;
  color: white;
  font-size: 90px;
  text-align: center;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: bolder;
  -webkit-text-stroke: 1px white;
  color: transparent;
  position: relative;
  display: block;
  white-space: nowrap;
}
:root body .wrap .title:before {
  content: attr(data);
  position: absolute;
  color: white;
  z-index: -2000 !important;
  left: 0;
}
:root body .wrap #image {
  left: 0;
  right: 0;
  margin: auto;
  top: 10%;
  position: absolute;
  z-index: -1 !important;
  width: 50vw;
  height: 80vh;
  background-size: cover;
  background-image: url("../image/photo-1587503051185-1412df64fb64.jpg");
}