body {
    padding: 0px;
    margin: 0;
}


.carousel-wrapper {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

    background-color: black;
    z-index: 3000;
}
.carousel {
    position: relative;
    left: 0;
    display: block;
    width: 100%;
    height: 67vw;

    overflow: hidden;
}
.car-slide > img {
    position: absolute;
    display: block;
    width: 100vw;
    height: 67vw;
    object-fit: cover;
    top: 0;
    left: 0;
}
.carousel-menu-wrapper {
    
    width: 100vw;
    height: 67vw;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
@media only screen and (orientation: landscape) {
    .carousel-wrapper, .carousel, .carousel-menu-wrapper {
        height: 100vh;
        width: 100%;
    }
    .car-slide {
        width: 100vw;
        height: 100vh;
    }
    .car-slide > img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        height: 100vh;
        width: 150vh;
        object-fit: cover;
    }
}
.carousel-menu-wrapper > a {
    height: 100%;
    flex: 1;

    opacity: 0;
    z-index: 3500;
}
.prev {
    cursor: url('SRC/SVG/left_arrow.svg') 0 0, auto;
}
.next {
    cursor: url('SRC/SVG/right_arrow.svg') 0 0, auto;
}
.leave {
    cursor: url('SRC/SVG/x.svg') 0 0, auto;
}

@media (pointer: coarse) {
    .carousel {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

    }
    .carousel-menu-wrapper > a {
        font-size: 100px;
        color: black;
        opacity: 1;
        z-index: 3500;
    }
    .carousel-menu-wrapper > a > img {
        margin: 5px;
    }
    .prev > img{
        position: absolute;
        top: 45%;
    }
    .next > img{
        position: absolute;
        top: 45%;
        right: 0;
    }
    .leave > img {
        position: absolute;
        top: 0;
        right: 0;
    }
}

@media (pointer: coarse) and (orientation: portrait) {
    .leave > img {
        position: fixed;
        top: 0;
        right: 0;
        margin: 10px;
    }
}

.car-slide {
    display: none;

}
.carousel-wrapper {
    display: none;
}
.active-carousel {
    display: block;
}
.active-slide {
    display: contents;
}