body{
  background-color: #222;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#container{

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.botones{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;  
}

#slider{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 600px;
  border: 15px solid #333;
  padding: 60px;
  border-radius: 15px;
}

img{
  border-radius: 15px;
  width: 400px;
  height: 400px;
}

button{
  border: 2px solid transparent;
  box-shadow: 2px 2px 3px;
  border-radius: 10px;
  padding: 10px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 25px;
  color: rgb(138, 133, 133);
  background-color:#333
}

.botones :hover{
  box-shadow: none;
}