#slideshow{
    width: 100%;
}
.myslider{
    width: 100%;
    display: none;

    height: 600px;
    
}
.myslider>img{
    width: 100%;
    height: 600px;
    margin-top: 30px;
}
.prev,.next{
    position:absolute;
    top: 60%;
    transform: translate(0,-50%);
    font-size: 50px;
    padding: 15px;
    color: white;
    cursor: pointer;
    transition: 0.1s;
    user-select: none;
}
.prev:hover,.next:hover{
    color: black;
}
.next{
    right: 0;
}
.dotsbox{
    position:absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 20px;
    cursor: pointer;
}
.dot{
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 3px solid white;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}
.active, .dot:hover{
    background-color: black;
}
.fade{
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5;
}
@-webkit-keyframes fade{
    from{opacity: 0.8;}
    to{opacity: 1;}
}
@keyframes fade{
    from{opacity: 0.8;}
    to{opacity: 1;}
}


