.container{
    display: flexbox;
    border-radius:10px;
    margin:0 auto;
    overflow: auto;
    height: 750px;
    padding: 10px;
    border-style: dotted;
    /*flex-direction: column;*/
    justify-content:center;
    align-items:center;
    width:90%;
    background-color: #5b88b2;
    
    box-sizing: border-box;
    font-family: "Just Me Again Down Here", cursive;
    
}
.photogrid{
    width: 100%;
    box-sizing: border-box;
    display: grid;
    gap:10px;
    grid-template-columns: auto auto auto auto;
}
.photo{
    width: 100%;
    align-items: center;
    object-fit: cover;
}
.c_books{
    display: block;
    font-size: 20px;

}
h2, h4{
    display: flex;
    text-align: center;
    border-radius: 5px;
    height: auto;
    width: 100%;
    margin: auto;
    margin-bottom: 10px;
    background-color: #95b2c4;
    font-family: "Just Me Again Down Here", cursive;
    
    color:#1e1e1e;
}
p{
    font-size: 20px;
}
h2{
    font-size: 30px;
}
h4{
    font-size: 25px;

}

body{
    background-image: url("background.png");
    background-color: #95b2c4;
    height: auto;
    overflow: hidden; /*fija la página web*/
}

