@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;900&display=swap');

body, h1, h2, p, ul, li {
    margin: 0;
    padding: 2%;
  }
  
  body {
    animation: gradientAnimation 20s ease infinite;
    background: linear-gradient(45deg, rgb(160, 160, 160), #b3b3b3, #676767, #717171); /*COR DO FUNDO*/
    font-family: Arial, sans-serif;
    background-size: 400% 400%;
  }

  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  @keyframes animacao {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* DESIGNER TITULO */
  #titulo-alexandria {
    text-align: center;
    font-family: 'Poppins'; /*FONTE - obs: Referencia no TOP da fonte*/
    font-size: 3rem;
    color: #333;
  }
   /* DESIGNER DA CAIXA DE LIVROS */
  #subtitulo-alexandria {
    font-family: 'Poppins'; /*FONTE - obs: Referencia no TOP da fonte*/
    padding:5%;
    font-size: 3;
    color: #ffffff;
  }
  
  #linha-alexandria {
    text-align: center;
    padding: 1rem 0;
    color: #333;
  }
  
  .livros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem;
  }
  
  /* DESIGNER DA CAIXA DE LIVROS */
  .livro {
    background-color: #ffffff;
    border-radius: 5%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-basis: calc(15% - 20px);
    margin: 3px;
    padding: 1%;
    text-align: center;
    font-family: 'Poppins'; /*AQUI VOCE MUDA A FONTE DENTRO DAS CAIXA AS 2 FONTES*/
  }
  
  .livro h2 {
    font-size: 1.5rem;
    padding: 1rem 0;
    color: #333;
  }
  
  .livro_filhos ul {
    list-style: none;
    padding: 0;
  }
  
  .livro_filhos li {
    padding: 0.5rem 0;
  }
  
  .livro_filhos a {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    display: block;
  }
  
  .livro_filhos a:hover {
    text-decoration: underline;
  }
   /* direitos reservados */
  footer {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .livro:hover { /* para o mouser encima da caixa livro*/
    transition-duration: 400ms;
    background-color: #e3f1ab; 
    color: #ffffff; 
    transform: scale(1.05);
  }
  
  /* imagem dragão */
  #dragao-imagem {
    animation: entrada 3s ease-out; /* tempo animaçãp */
    position: fixed;
    bottom: 0;
    right: 0;
    width: 300px;
    height: auto;
    z-index: -1;
  }
  @keyframes entrada { /* animação */
    0% {  
      transform: translateY(30%);
      opacity: 0;
    }
   
    100% {
      transform: translateY(0%);
      opacity: 1;
    }
  }