body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 00px;
}
.slide{
    width: 600px;
    height: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    box-shadow: 0px 0px 20px 5px rgb(151,151,150);
    overflow: hidden;
    border: 5px solid rgb(78, 71, 65);
    border-radius: 10px;
}
.slide figure img{
    width: 20%;
    height: 450;
    float: left;
}
.slide figure{
    position:relative;
    width: 500%;
    margin: 0px;
    left: 0px;
    animation: Jmam 20s infinite linear;
}
@keyframes Jmam{
    0%{left: 0%;}
    10%{left: 0%;}
    20%{left: -100%;}
    30%{left: -100%;}
    40%{left: -200%;}
    50%{left: -200%;}
    60%{left: -300%;}
    70%{left: -300%;}
    80%{left: -400%;}
    100%{left: -400%;}
}