@import "nav.css";
@import "imgtrailer.css";
@import "scrollbar.css";

body{
  margin: 0%;
  background-color: #000000;
}


div#conteudo{
  transform: translate(0, 33vw);
  font-size: larger;
  font-family:Arial, Helvetica, sans-serif;
  position: absolute;
  z-index: 3;
  width: 97.5vw;
}

div#conteudo>p{
  margin-left: 1rem;
  color: white;
  font-size: 2rem;
}

div.info-monstros>h2,p{
  margin-left: 1rem;
  margin-right: 1rem;
}

div.lista{
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  margin-left: 1rem;
  margin-right: 0.25rem;
  margin-bottom: 3rem;
  height: 22rem;
  background: rgba(255, 255, 255, 0.288);
  padding: 0.5rem;
}

div.lista-mini{
  background-color: rgb(155, 159, 168) ; 
  height: 13rem ;
  border: 2px solid black;
  margin-right: 1.5rem;
}

div.lista-mini>div.criaturas>a>img{
  height: 7rem;
  margin-bottom: 1rem;
}

div.lista-mini>div.criaturas{
  height: 9rem;
  margin-bottom: 1rem;
}

div.info-monstros{
  background-color: rgb(236, 241, 255);
  padding: 1rem;
  margin-top: 6rem;
  width: 100%;
}

div.criaturas{
  margin: 0.3rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  height: 17rem;
  padding: 1rem;
  background: rgb(236, 241, 255);
  border: 2px solid black;
  box-shadow: 3px 3px 3px black;
}

div.name{
  text-align: center;
}

div.criaturas>a>img{
  height: 12rem;
  margin-bottom: 1rem;
  filter: drop-shadow( rgb(84, 90, 187) 7px 7px 2px);
}

div.criaturas:hover{
  transform: scale(115%);
  background: linear-gradient(rgba(255, 115, 0, 0.993), rgb(236, 241, 255),rgb(236, 241, 255));
}

@media (max-width: 768px) {
  div#conteudo{
    transform: translate(0, 130vw);
  }
}