body{
    margin: 0;
    font-family: monospace;
    background-image: url(images/sand.webp);
    /* background-position:; */
    background-size: cover;
    background-size: 150%;
    background-position: center;
    overflow: hidden;
}

.slider{
    transform: translateY(5%);
    width: 1800px;
    max-width: 100vw;
    height: 750px;
    margin: auto;
    position: relative;
    /* overflow: hidden; */
}

.list{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    width: max-content;
    transition: 1s;
}
.list img{
    width: 1800px;
    max-width: 100vw;
    height: 100%;
    object-fit: contain;
}
.buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(25, 114, 23, 0.333);
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}

.dots{
    position: absolute;
    bottom: 10px;
    color: rgba(25, 114, 23, 1);
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: rgba(25, 114, 23, 0.333);
    margin: 20px;
    border-radius: 20px;
    transition: 1s;

}
.dots li.active{
     width: 30px;
}

@media screen and (max-width: 768px) {
    .slider{
        height: 90vh;
    }

    .list #img_1{
        width: 100vw;
        height: 100%;
        display: none;
        /* background-color: aqua; */
    }
    
}

@media screen and (min-width: 768px) {


    .list #img_2{
        display: none;
        /* background-color: aqua; */
    }
}