
.subtitle {
    font-size: 18px;
    color: #777;
    margin-top: 30px;
}
h1 {
    margin-top: 10px;
    font-size: 36px;
    font-weight: bold;
}
.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    overflow: hidden;
    position: relative;
    perspective: 1000px;
}
.carousel {
    display: flex;
    width: 600px;
    justify-content: center;
    align-items: center;
    position: relative;
}
.carousel img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    position: absolute;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    opacity: 0.6;
}
.carousel img.left {
    transform: translateX(-220px) scale(0.8);
    opacity: 0.8;
}
.carousel img.center {
    transform: translateX(0) scale(1);
    z-index: 2;
    opacity: 1;
}
.carousel img.right {
    transform: translateX(220px) scale(0.8);
    opacity: 0.8;
}

