* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container-slider {
    display: flex;
    width: 100%;
    min-height: 50vh;
    align-items: center;
    justify-content: center;
    gap: 12rem;
    margin-top: 50px;
    }
  
  .container-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 980px;
    height: 100px;
  }
  
  .slider {
    opacity: 0;
    transition: opacity 1s;
    position: absolute;
    width: 100%;
    border-radius: 10px;
  }
  
  .on {
    opacity: 1;
  }
  
  #prev-button, #next-button {
    width: 60px;
    height: 60px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    margin: -150px;
    background-color: white;
    border-radius: 100%;
  }
  
  #prev-button img, #next-button img {
    width: 30px;
    height: 30px;
  }

  #prev-button {
    transform: rotate(180deg);
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 100%;
  }
