



*{
    margin: 0;
}

a{
    text-decoration: none;
}
body{
}

header{
    width: 100vw;
    background-color: rgb(87, 143, 85);
    /* background-color: rgb(57, 131, 88); */

    margin-bottom: 15px;
    padding-top: 15px;
    padding-bottom: 30px;
    display: flex;
}

.headerBlock.large{
    flex: 3;
}
.headerBlock.small{
    flex: 1;
}

header>*{
    margin-left: 15px;
    margin-right: 10px;
    color: white;
}

.bookContainer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100vw;
    
}

.bookCard{
    margin:50px;
}

.bookCard>p{
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    color: rgb(0, 0, 0);
    /* font-size: 1.2em; */
}

.bookThumbnail img {
  width: 100%;
  height: auto; 
  display: block;  
}


.bookThumbnail:hover img {
  filter: brightness(50%);
}
.bookButtons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    gap: 30px;
}
.bookThumbnail:hover .bookButtons {
    display: flex;
}

.bookButtons button:hover{
    filter: brightness(50%);
}

.bookButtons button{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border-color: black;
    border-width:3px;
    border-style: none;
}

button>svg{
    width: 100%;
    color: black;
}


.bookThumbnail{
    position: relative;
    display: inline-block;
}

.bookDialog {
    width: 75vw;
    margin: auto;
    padding: 0;
    background-color: rgb(56, 56, 56);
    border-color: black;
    overflow: hidden;
}

.flipbook {
    width: 100%;
    height: 100%;
}

.flipbook canvas {
    background-color: rgb(56, 56, 56);
    /* remove width/height overrides — let StPageFlip control these */
}

.credentials{
    margin-left: 15px;
}
/* .breaker{
    margin-bottom: 0px;
} */