*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}


body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to right, #fefcea, #f1da36);
  color: #333;
  margin: 0;
  padding: 0;
  background-image: url('bgloto.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

html {
    scroll-behavior: smooth;
  }


::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  

  ::-webkit-scrollbar-track {
    background-color: #f1f1f1; 
    border-radius: 4px; 
  }
  

  ::-webkit-scrollbar-thumb {
    background-color: #007bff; 
    border-radius: 4px; 
  }
  

  ::-webkit-scrollbar-thumb:hover {
    background-color: #0056b3; 
  }
  

  ::-webkit-scrollbar-thumb:active {
    background-color: #003366; 
  }

  
 
  /*livro*/

.livro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #33333396;
    overflow-x: hidden;
}

.livrocontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 1200px;

}

.livrotitulo {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 25%;
    margin-bottom: 5%;
}

.livrotitulo img{
    width: 400px;
}

.livrotitulo h1{
    background-color: #f1da36;
    padding: 20px;
    border-radius: 10px;
    font-size: 50px;
    color: #0056b3;
}





.livroconteudo {
    color: white;
}

.livroconteudo {
    color: rgb(255, 255, 255);
    font-size: 26px;
}

.livroconteudo a{
    color: #f1da36;
    font-weight: 800;
}

@media (max-width:1280px){
    .livrocontainer{
        width: 80%;
    }

}

@media (max-width:800px){
    .livrotitulo img{
        width: 200px;
    }
    
    .livrotitulo h1{
        font-size: 25px;
        color:  #0056b3;
    }

}

