
.container_landing{
  margin: auto;
  background-color: white;
  width: 80vw;
  padding: 30px;
  box-shadow: 10px 10px 16px #b6b6b6;
  border-radius: 1rem;
}

ul, li {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.slider{
  position: relative;
  max-width: 80vw;
  height: 60vh;
}

ul.slider li {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    width: inherit;
    height: inherit;
    transition: opacity .5s;
    background:#fff;
}

ul.slider li img{
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

ul.slider li:first-child {
    opacity: 1; /*Mostramos el primer <li>*/
}

ul.slider li:target {
    opacity: 1; /*Mostramos el <li> del enlace que pulsemos*/
}

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

.menu li{
  display: inline-block;
  text-align: center;
}

.menu li a{
  display: inline-block;
  color: rgba(255, 255, 255, 0);
  text-decoration: none;
  background-color: #fab2ef;
  padding: 20px;
  width: 20px;
  height: 20px;
  font-size: 20px;
  border-radius: 100%;
}

.menu li a:hover{ background-color: #feab4b;}

/*celular part*/
@media screen and (max-width: 800px) {
  .container_landing{
    margin: auto;
    background-color: white;
    width: 80vw;
    padding: 30px;
  }
  
  ul, li {
      padding: 0;
      margin: 0;
      list-style: none;
  }
  
  ul.slider{
    position: relative;
    max-width: 80vw;
    height: 60vh;
  }
  
  ul.slider li {
      position: absolute;
      left: 0px;
      top: 0px;
      opacity: 0;
      width: inherit;
      height: inherit;
      transition: opacity .5s;
      background:#fff;
  }
  
  ul.slider li img{
    width: 100%;
    height: 60vh;
    object-fit: cover;
  }
  
  ul.slider li:first-child {
      opacity: 1; /*Mostramos el primer <li>*/
  }
  
  ul.slider li:target {
      opacity: 1; /*Mostramos el <li> del enlace que pulsemos*/
  }
  
  .menu{
    text-align: center;
    margin: 20px;
  }
  
  .menu li{
    display: inline-block;
    text-align: center;
  }
  
  .menu li a{
    display: inline-block;
    color: rgba(255, 255, 255, 0);
    text-decoration: none;
    background-color: #fab2ef;
    padding: 10px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    border-radius: 100%;
  }
  .menu li a:hover{ background-color: #feab4b;}
}