* {
  box-sizing: border-box;
}

body {
  background-color: #E5C0A0;

  padding-top: 0px;
  color: white;
}

.allcontainer{
  width: 100%;
  margin: auto;
}
.name {color:white;
  text-align: center;
font-size: 200%;
padding-top: 20px;}

.audio-player {
  width:100%;
  padding: 10px 10px;
  margin: auto;
  background-color: black;
  border: 1px solid black;
}
.audio-player .player-controls {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.audio-player #playAudio {
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  border: none;
  width: 60px;
  height: 60px;
  background: url("img/play.png") no-repeat center;
  background-size: contain;
}
.audio-player #playAudio.pause {
  background: url("img/pause.png") no-repeat center;
  background-size: contain;
}
.audio-player p {
  margin: 0 0 0 5px;
  line-height: 1;
  display: inline-flex;
}
.audio-player p small {
  font-size: 10px;
}
.audio-player #seekObjContainer {
  position: relative;
  width: 100%;
  margin: 0 5px;
  height: 5px;
}
.audio-player #seekObjContainer #seekObj {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #e3e3e3;
  border: 1px solid black;
}
.audio-player #seekObjContainer #seekObj #percentage {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: coral;
}
.time {font-size: 200%;}

footer { background-color: black; }






@keyframes slide {
  0% { transform: translateX(0); }
  18% { transform: translateX(0); }

  22% { transform: translateX(-100%); }
  40% { transform: translateX(-100%); }

  44% { transform: translateX(-200%); }
  66% { transform: translateX(-200%); }

  70% { transform: translateX(-300%); }
  97% { transform: translateX(-300%); }

}



.wrapper {
  max-width: 100%;
  margin: 0 auto;

}

.slider {
  position: relative;
}

.slides {
  position: relative;
  display: flex;
  overflow: hidden;
}

.slide {
  width: 100vw;
  flex-shrink: 0;
  animation-name: slide;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  list-style:none;
}

.slides:hover .slide {
  animation-play-state: paused;
}

.slide img {
  width: 100%;
  vertical-align: top;
}

.slide a {
  width: 100%;
  display: inline-block;
  position: relative;
}

.caption {
  color: white;
  text-shadow: 1px 1px black;
  font-size: 8vw;
  position: absolute;
  bottom: 8vw;
  right: 4vw;
}

.slide:target {
  animation-name: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
}

.slider-controler {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 5px;
  background-color: rgba(0,0,0,0.5);
  z-index: 100;
}

.slider-controler li {
  margin: 0 0.5rem;
  display: inline-block;
  vertical-align: top;
}

.slider-controler a {
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
}

.portada {width:100%;}

@media only screen and (min-width:1000px) {
  .allcontainer{
  width:80%;
  margin: auto;
}

.imgfoot{
  width: 500px;
  
}

    .wrapper {
    width: 70%;
    float: right;
  }

  .slide {
    width: 100%;
    float: right;
  }

 

  .caption {
    font-size: 96px;
    bottom: 96px;
    right: 50px;
  }
  .name{font-size: 20px;}

  .audio-player #playAudio {
    width: 30px;
    height: 30px;
  }

  .time{font-size:12px;}

  .portada {width:30%; 
  }

}