.slideshow{
    background-color: black;
    /* background-image: url(/images/drink1.png); */
    width: 100%;
    height: 12rem;
    position: relative;
    padding: 1rem;
}
.slideshow .content{
    width: 100%;
}
.slideshow-item{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 4rem;
    
    transition: all 0.5s;
    transform: translateX(100%);
    z-index: 10;
    opacity: 0;
}
.current{
    transform: translateX(0);
    z-index: 20;
    opacity: 1;
}
.leaving{
    transform: translateX(-100%);
    opacity: 0;
}

.slideshow-item:nth-child(1){
    background-color: pink; 
    background-repeat: no-repeat;
    text-align: center;
    color: black;
}
.slideshow-item:nth-child(2){
    background-repeat: no-repeat;
    background-color: lightblue;
    text-align: center;
    color: black;
}
.slideshow-item:nth-child(3){
    background-color: hsl(180, 40%, 80%);
    text-align: center;
    color: black;
}
.slideshow-item:nth-child(4){
    background-color: hsl(240, 40%, 80%);
    text-align: center;
    color: black;
}
.slideshow-item:nth-child(5){
    background-color: hsl(300, 40%, 80%);
    text-align: center;
    color: black;
}
.slideshow-item:nth-child(6){
    background-color: hsl(360, 40%, 80%);
    text-align: center;
    color: black;
}
.slideshow img{
    float:left;
    margin: 0 1rem 0 0;
}
.slideshow h1{
    font-size: 3.5vw;
    line-height: 4rem;
}
.slideshow p{
    font-size: 2.5vw;
    line-height: 0.8;
    height: 10rem;
    overflow: hidden;
}