 
.gallery {
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-bottom: 50px;
    margin-right: 10px;
    margin-bottom: 40px !important;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 1200px;
    padding-bottom: 30px;
}

.image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: rotate(-1deg);
}

.image {
    display: block;
    position: relative;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}

.image img:hover {
    transform: scale(1.01);
}

.image:hover:before {
    transform: rotate(-10deg);
}

main {
    background-image: url("/images/book-image-5.png");
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    justify-content: center;
}

  body{
    overflow: hidden;
  }

.title-text {
    font-size: 3em;
    text-transform: uppercase;
    font-weight: bold;
    color: #ebedf0 !important;
    margin-top: 50px;
  }
  