<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}

.sliders{
    width: 600px;
    height: 800px;
    margin: auto;
    margin-top: 100px;
    box-shadow: 0px 0px 3px grey;
    position: relative;

    overflow: hidden;
}

.slider{
    width: 100%;
    height: 100%;
    position: absolute;
    
    transition: 1s;
}

.nav{
    text-align: center;
    margin-top:20px;
}

.nav button{
    font-size: 25px;
    color: rgb(72, 71, 0);
    padding: 10px;
    background-color: orange;
    border-radius: 20%;
}

.nav button:hover{
    background-color: green;
    cursor: pointer;
}

.nav button:active{
    background-color: rgb(196, 196, 220);
}
</pre></body></html>