/*
body {
    background-image: url("../imgs/layout/home/1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
*/

body {
  /*background: #000;*/
}

.stage {
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100vw;
}

.stage img {
  width: 500px;
  position: absolute;
  top: 50%;
  left: calc(50% - 250px);
}

.actor {
  animation: kenburns 30s linear infinite;
  background-size: cover;
  background-position: 50%;
  height: 100vh;
  inset: 0;
  opacity: 0;
  position: absolute;
  scale: 1.2;
  width: 100vw;
}

.actor:nth-child(1) {
  background-image: url("../imgs/layout/home/photos/1.jpg");
}
.actor:nth-child(2) {
  animation-delay: 10s;
  background-image: url("../imgs/layout/home/photos/2.jpg");
}
.actor:nth-child(3) {
  animation-delay: 20s;
  background-image: url("../imgs/layout/home/photos/3.jpg");
}

@keyframes kenburns {
  25% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
    scale: 1;
  }

  60% {
    opacity: 0;
  }
}

#headlinesWrapper_CZ,
#headlinesWrapper_EN {
  display: flex;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#headlinesWrapper_CZ h1,
#headlinesWrapper_EN h1 {
  font-size: 1.7em;

  background-image: url("../imgs/layout/jeden-svet-logo-CZ_v2.svg");

  background-repeat: no-repeat;

  background-position: center center;

  height: 100px;
  width: 300px;
}

#headlinesWrapper_EN h1 {
  background-image: url("../imgs/layout/jeden-svet-logo-EN_v2.svg");
}

#headlinesWrapper_CZ h1 span,
#headlinesWrapper_EN h1 span,
#headlinesWrapper_CZ h3 span,
#headlinesWrapper_EN h3 span {
  display: none;
}

#headlinesWrapper_CZ p,
#headlinesWrapper_EN p {
  font-size: 1em;
}

@media screen and (min-width: 500px) {
  #headline_CZ,
  #headline_EN {
    font-size: 3rem;

    text-align: center;
  }

  #headline_CZ h1,
  #headline_EN h1 {
    font-size: 1.7em;
  }

  #headline_CZ h3,
  #headline_EN h3 {
    margin: 3rem auto;
  }

  #headline_CZ p,
  #headline_EN p {
    font-size: 0.7em;
  }
}
