/* Reset default margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    background-image: url(images/bar.png);
    background-size: 100dvw;
}

img {
    -webkit-user-drag: none;
    user-select: none;
}

/* Center the carousel container */
.carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90dvh;
    margin-top:15dvh;
}

/* Style for the center item */
.carousel-item.center {
    text-align: center;
    margin: 0 10px;
}

.carousel-item.center img {
    width: auto;
    height: 50dvh; 
    opacity: 1;
}

.carousel-item.center h2 {
    font-size: 24px;
    margin-top: 10px;
    color:#fff;
    text-shadow: 2px 2px 3px #000;
}

.carousel-item.center p {
    font-size: 18px;
    color:#fff;
    text-shadow: 2px 2px 3px #000;
}

/* Style for the left and right items */
.carousel-item.left,
.carousel-item.right {
    opacity: 0.6;
    width: 20dvw;
    margin-top:6dvh;
}

.carousel-item.left img,
.carousel-item.right img {
    width: auto; 
    height: 30dvh;
}

.carousel-item.small-right,
.carousel-item.small-left {
    opacity: 0.3; /* 50% opacity */
    width: 10dvw; /* Adjust the width for small items */
    margin-top:24dvh;
}

.carousel-item.small-right img,
.carousel-item.small-left img {
    width: auto;
    height: 10dvh;
}