.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2rem;
    margin-top: 2rem;
}

.custom-image-hover {
    position: relative;
    overflow: hidden;
}

.custom-image-hover img {
    transition: transform 0.3s ease-in-out;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-image-hover:hover img {
    transform: scale(1.25);
}
