* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    padding: 0;
}

.track {
    display: flex;
    height: 100%;
    width: 100%;
    overflow: hidden;

    transition: 1s;
}

.card-container {
    width: 100%;
    flex-shrink: 0;
    transition: 1s;

}

.img-container {
    width: 100%;
    height: 100%;
}

.img-container-modified {
    width: 100%;
    height: 600px;
}




/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 10px;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}








/* .nav button {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    outline: none;
    border: 1px solid #000;
    cursor: pointer;
} */

/* .nav .prev {
    left: 0px;
    display: none;
}

.nav .prev.show {
    display: block;
}

.nav .next {
    right: 0px;
}

.nav .next.hide {
    display: none;
} */