#player {
    height: 100%;
    width: 444px;
    
    position: absolute;
    left: 0;
    right: auto;
}

body {
  background: #fff;
}

img {
    width: 100%;
    height: 100%;
}

.bg {
    width: 526px;
    height: 100%;
    
    z-index: -1;
    position: absolute;
    right: 0;
}

.container {
    width: 526px;
    height: 100%;
    
    position: absolute;
    right: 0;
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slideshow-container {
    height: 250px;
    width: 526px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slide {
    width: 526px;
    height: 250px;
    
    position: absolute;
    transform: translateY(300px);

}

.slideIn {
    animation: slide-in 1.4s forwards
}

@keyframes slide-in {
    from {transform: translateY(-300px)}
    to {transform: translateY(0)}
}

.slideOut {
    animation: slide-out 1.4s forwards;
}

@keyframes slide-out {
from {transform: translateY(0)}
    to {transform: translateY(300px)}
}

.first {
    transform: translateY(0)
}


.graphic {
    width: 120%;
    height: auto;
    
    opacity: 0.15;
    
    position: absolute;
    bottom: -102px;
}