.slider{
    position: relative;
    margin: auto;
    width: 100%;
    overflow: hidden;
}
.slides img{
    width: 100%;
    display: none;
}
img.displaySlide{
    display: block;
    animation-name: fade;
    animation-duration: 1.5s;
}
.slider button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background-color: hsla(0, 0%, 0%, 0.51);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
}
.prev{
    left: 0;
}
.next{
    right: 0;
}
@keyframes fade{
    from{opacity: 0.5}
    to {opacity: 1}
}