*; *::before, *:after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    text-align:center;
}
@media only screen and (max-width: 800px) {
    .carousel {
    width: 100vw;
    height: 50vh;
    position: relative;
    float: inline-start;
}
    .carousel-button {
    padding: 0;
    position: absolute;
    width: 50vw;
    height: 45vh;
    z-index: 2;
    background: none;
    border: none;
    background-color: rgba(0, 0, 0, 0);
}
    b1 {
    font: 12px Helvetica Neue, Helvetica, Arial, sans-serif;
    font-kerning: none;
    line-height: 1.6;
}
   .slide > img {
    padding: 0;
    width: 100vw;
    object-fit: cover;
}
   
}
@media only screen and (min-width: 801px) {
    .carousel {
    width: 50vw;
    height: 100vh;
    position: relative;
    float: inline-start;
}
    .carousel-button {
    padding: 0;
    position: absolute;
    width: 25vw;
    height: 100vh;
    z-index: 2;
    background: none;
    border: none;
    background-color: rgba(0, 0, 0, 0);
}
    b1 {
    font: 16px Helvetica Neue, Helvetica, Arial, sans-serif;
    font-kerning: none;
    line-height: 1.5;
}
    .slide > img {
    padding: 0;
    width: 50vw;
    object-fit: cover;
}
}


.carousel > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.slide > img {
    padding: 0;
    width: 50vw;
    object-fit: cover;
}

.slide[data-active] {
    opacity: 1;
}


.carousel-button:hover,
.carousel-button:focus {
    color: white;
    background-color: rgba(0, 0, 0, 0);
}

.carousel-button.prev {
    left: 0rem;
    cursor: w-resize;
}

.carousel-button.next {
    right: 0rem;
    cursor: e-resize;
}

figure.image {
    margin: 0px;
}

figure.image:hover img,
    figure.image.hover img {
    -moz-transform:scale(1.04);
    -ms-transform: scale(1.04);
    -o-transform: scale(1.04);
	-moz-transform: rotate(10deg);
	-ms-transform: rotate(10deg);
	-o-transform: rotate(10deg);
	transform: scale(1.04);    
}