body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }
  
  .slider {
    position: relative;
    height: 100vh;
    width: 100vw;
  }
  
  .slide {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    font-size: 48px;
    padding: 10px;
    color: white;
    background-color: rgba(0,0,0,0.4);
    user-select: none;
    transform: translateY(-50%);
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  