.card-img-top {
    width: 100%;
    height: 400px; /* Adjust the height as needed */
    object-fit: contain;
    aspect-ratio: 1/1;
}
.carousel-img-wrapper {
    position: relative;
    width: 100%;
    height: 400px; /* Match .card-img-top height */
}
.carousel-img-wrapper .carousel-control-prev,
.carousel-img-wrapper .carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    background: rgba(255,255,255,0.3);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.carousel-img-wrapper .carousel-control-prev:hover,
.carousel-img-wrapper .carousel-control-next:hover {
    opacity: 1;
}
.carousel-img-wrapper .carousel-control-prev {
    left: 0;
}
.carousel-img-wrapper .carousel-control-next {
    right: 0;
}
.carousel-arrow{
    color: gray;
    font-size:100px;    
}
.carousel-arrow:hover{
    color: black;   
}

#background{
    background-position:top center;
    background-repeat: no-repeat;
    background-size: 100%;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;           /* Firefox */
    image-rendering: -webkit-optimize-contrast;  /* WebKit */
    -ms-interpolation-mode: nearest-neighbor;    /* IE */
}