* {
  box-sizing: border-box;
}
body {
  overflow: hidden;
}
.texto {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-template-rows: repeat(3, 1fr);

  grid-template-areas:
    "h1 h2 h3"
    "h7 h8 h9"
    "h13 h14 h15";
  grid-gap: 0.75em;
}
.texto1 {
  font-size: 30vmin;
  grid-area: h8;
  cursor: pointer;
  text-align: center;
  /* transform: scale(1.25); */
  transform-style: preserve-3d;
}
.texto1:hover {
  animation: texto1 5s linear infinite;
}
@keyframes texto1 {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.casa {
  background-image: url(../imagens/220305_Detalhes.jpg);
  grid-area: h1;
  background-size: cover;
  background-position: center center;
  height: 10vmin;
  width: 10vmin;
  cursor: pointer;
}
.popup {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
  background-color: black;
}
.gif {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-template-rows: repeat(3, 1fr);

  grid-template-areas:
    "g1 g1 g1"
    "g1 g1 g1"
    "g1 g1 g1";
  grid-gap: 0.75em;
}
.bird {
  background-image: url(../imagens/pajaros.gif);
  background-size: cover;
  /* background-position: center center; */
  /* width: 100%;
    height: 100%; */
  grid-area: g1;
}
.popup1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: black;
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  grid-template-rows: repeat(10, 1fr);

  grid-template-areas:
    "m1 s1 s1 s1 c8"
    "s4 s4 s4 s4 s4"
    "s4 s4 s4 s4 s4"
    ". s5 s5 s5 c5"
    ". s5 s5 s5 ."
    ". s6 s6 s6 ."
    ". s6 s6 s6 ."
    ". s6 s6 s6 ."
    ". s8 s7 s7 c7"
    ". s8 s7 s7 .";
  grid-gap: 1em;
}
.casa1 {
  background-image: url(../imagens/220305_Detalhes.png);
  grid-area: m1;
  background-size: cover;
  background-position: center center;
  height: 10vmin;
  width: 10vmin;
  cursor: pointer;
}
a {
  color: whitesmoke;
  font-weight: bold;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  text-decoration: none;
  padding: 0;
  padding-top: 0.5em;
  font-size: 1.5em;
  text-align: center;
  width: 100%;
  display: block;
  cursor: pointer;
}
a:hover {
  background-image: linear-gradient(rgb(78, 77, 77), black);
}
.menu {
  grid-area: s1;
  position: sticky;
  top: 0;
}
.menu > ul {
  margin: 0;
  height: fit-content;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  align-items: top;
}
.menu > ul > li {
  display: inline-block;
  min-width: 25vw;
  line-height: 3rem;
}
ul li ul li {
  display: none;
}
ul li > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  /* background-image: linear-gradient(hsla(300, 50%, 50%, 30%), hsla(60, 50%, 40%, 50%)); */
}
ul li:hover > ul li {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu > ul {
  background-color: rgba(0, 0, 0, 0.678);
  height: 3rem;
}
/* .site:hover .voo {
    animation-name: slide;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-delay: .1s;
    animation-fill-mode: forwards;
        animation-play-state: running;
}
.stage:active .ball {
    animation-play-state: paused;
}   */
.fotofilme {
  background-image: url(../imagens/hitchcock.jpg);
  grid-area: s4;
  background-size: cover;
  background-position: center;
  height: 60vmin;
}
.voo {
  grid-area: c8;
  background-image: url(../imagens/crow-raven-flying.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
.site:hover .voo {
  animation-name: slide;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-fill-mode: infinite;
  animation-play-state: running;
}
@keyframes slide {
  0% {
    right: 0;
    top: 0;
  }
  50% {
    right: 500px;
    top: 250px;
  }
  100% {
    right: 1000px;
    top: 500px;
  }
}
.sinopse {
  color: whitesmoke;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 1em;
  margin: 2em;
  text-align: left;
  justify-content: space-evenly;
  width: 100%;
  grid-area: s5;
  padding-top: 25vmin;
}
.voo1 {
  grid-area: c5;
  background-image: url(../imagens/crow-raven-flying.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
.site:hover > .voo1 {
  animation-name: slide;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-fill-mode: infinite;
  animation-play-state: running;
}
figure {
  grid-area: s6;
  padding-top: 15vmin;
  margin-bottom: 40vmin;
}
iframe {
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
.realizador {
  grid-area: s7;
  padding-top: 10vmin;
  padding-bottom: 30vmin;
}
.textoreal {
  color: whitesmoke;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 1em;
  margin: 2em;
  text-align: left;
  justify-content: space-evenly;
  width: 100%;
}
.imagemreal {
  background-image: url(../imagens/alfred-hitchcock.png);
  grid-area: s8;
  background-size: cover;
  background-position: center;
  margin-top: 10vmin;
  margin-bottom: 30vmin;
}
.voo2 {
  grid-area: c7;
  background-image: url(../imagens/crow-raven-flying.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
.site:hover .voo2 {
  animation-name: slide;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-fill-mode: infinite;
  animation-play-state: running;
}
