* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
   display: flex;
   justify-content: center;
   align-items: center;
   
  }
  
  .slider {
    width: 100%;
    max-width: 600px;
    height: 350px;
    position: relative;
    overflow: hidden; 
    border-radius: 20px;
  }
  
  .slide {
    width: 100%;
    max-width: 800px;
    height: 350px;
    position: absolute;
    transition: all 0.5s;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .btn {
    position: absolute;
    width: 40px;
    height: 40px;
    padding: 10px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background-color: #fff;
    font-size: 18px;
  }
 
  .btn-prev {
    top: 45%;
    left: 2%;
  }
  
  .btn-next {
    top: 45%;
    right: 2%;
  }