.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}
body {
    height: 100vh;
    // display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(25,12,41);
}
.images {
    display: flex;
    width: 100%;
}
.images img {
    height: 90vh;
    width: 100vw;
    transition: all 0.15s ease;
}
.images input {
    display: none;
}
.dots {
    display: flex;
    justify-content: center;
    margin: 5px;
}
.dots label {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: solid #fff 3px;
    cursor: pointer;
    transition: all 0.15s ease;
    margin: 5px;
}
.dots label:hover {background: #fff;}
#img1:checked ~ .m1 {
    margin-left: 0;
}
#img2:checked ~ .m2 {
    margin-left: -100%;
}
#img3:checked ~ .m3 {
    margin-left: -200%;
}
#img4:checked ~ .m4 {
    margin-left: -300%;
}