.carousel {
    width: 750px;
    overflow: hidden;
    margin: auto;
    padding-top: 60px;
    padding-bottom: 20px;
    border-radius: 15px;
    background: #fcfbf925;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.1);
}

.track {
    display: flex;
    transition: transform 0.7s ease;
}

.slide {
  cursor: pointer;
    flex: 0 0 750px;
    /* same as carousel width */
    text-align: center;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.caption {
    padding: 15px;
}

.caption h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.caption a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 8px;
    border-bottom: 1px solid black;
}