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

@media (min-width: 768px){
  body{
    margin: 0%;
    background-color: #000000;
    overflow-x: hidden;
  }


  div#conteudo{
    transform: translate(0, 40vw);
    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.tipo-monstros>h2{
    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: 23rem;
    background: rgba(255, 255, 255, 0.247);
    padding: 0.5rem;
    
  }

  div.lista-mini{
    background: rgba(0, 0, 0, 0.76);
    height: 15rem ;
    border: 2px solid black;
    margin-right: 1.5rem;
  }

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

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

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

  div.tipo-monstros>p{
    padding: 1rem;
    background-color: rgb(155, 159, 168);
    margin-left: 1rem;
    margin-right: 1.5rem;
  }

  .criaturas{
    margin: 0.4rem;
    margin-top: 1rem;
    height: 19rem;
    padding: 1rem;
    background:  rgb(236, 241, 255);
    border: 2px solid black;
    box-shadow: 3px 3px 3px black;
    color: rgb(0, 0, 0);
    cursor: pointer;
  }

  div.nameMobLista{
    text-align: center;
    font-size: 1.4rem;
  }

  .criaturas img{
    height: 12rem;
    margin-bottom: 1rem;
    filter: drop-shadow( rgba(55, 56, 129, 0.781) 7px 7px 2px);
  }

  .criaturas:hover{
    transform: scale(115%);
    background: linear-gradient( rgb(255, 0, 128) 0%, rgb(255, 217, 0)100%);
  }
  
  .escondido{
    display: none;
  }
}


/*--telas menores--*/

@media (max-width: 768px) {

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


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

  div.tipo-monstros>h2{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .lista{
    display: flex;
    overflow-x:scroll;
    overflow-y: hidden;
    white-space: nowrap;
    height: 25rem;
    background: rgba(255, 255, 255, 0.247);
    padding: 1rem;
    width: 90%;
    margin: 0%;
  }

  .divLista{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .divLista>h1{
    color: white;
    left: 0;
    font-size: 2rem;
  }

  div.lista-mini{
    background: rgba(0, 0, 0, 0.76);
    height: 18rem;
    border: 2px solid black;
    width: 100%;
  }

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

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

  div.tipo-monstros{
    background-color: rgb(255, 255, 255);
    padding: 1rem;
    margin-top: 6rem;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  div.tipo-monstros>p{
    padding: 1rem;
    background-color: rgb(155, 159, 168);
  }

  .criaturas{
    margin: 0.4rem;
    margin-top: 1rem;
    height: 19rem;
    padding: 1rem;
    background:  rgb(236, 241, 255);
    border: 2px solid black;
    box-shadow: 3px 3px 3px black;
    color: rgb(0, 0, 0);
    cursor: pointer;
    
  }

  div.nameMobLista{
    text-align: center;
    font-size: 1.4rem;
  }

  .criaturas img{
    height: 12rem;
    margin-bottom: 1rem;
    filter: drop-shadow( rgba(55, 56, 129, 0.781) 7px 7px 2px);
  }

  .criaturas:hover{
    transform: scale(115%);
    background: linear-gradient( rgb(255, 0, 128) 0%, rgb(255, 217, 0)100%);
  }

  .criaturas:hover img{
    /*filter: drop-shadow( rgb(107, 0, 0) 7px 7px 2px);*/
  }

  .escondido{
    display: none;
  }
}