.listimage {
    object-fit: cover;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    transition-property: border-radius;
    transition-duration: var(--chakra-transition-duration-normal);
    aspect-ratio: 1 / 1;
    padding-bottom: 10px;
}

.mainbackground::after {
    content: "";
    background-color: #F9FAFE;
    background-image: url(images/th.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 75%;
    position: absolute;
    top: 52px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.1;
    z-index: -1;
}