
/* Gestion GENERAL -----------------------------------------------------------*/

body {
    width: 90%;
    margin: 0 auto;
    background-color: grey;
}

/*----------------------------------------------------------------------------*/
/*    gestion slide                                                           */
/*----------------------------------------------------------------------------*/

.boto {
  text-align: center;
}

.slideshow-container{
    position: relative;
    margin: auto;
    border: 1px solid black;
    background-color: black;
}

.slides img {
    width: 60%;
    height: 50%;
    margin: auto;
    display: block;
}

.prev, .next{
    cursor: pointer;
    position: absolute;
    top: 50%;
    color: white;
    font-weight: bold;
    font-size: 35px;
    transition: 0.6s ease;
}

.next{
    right: 0;
    padding-right: 20px;
}

.prev{
    left: 0;
    padding-left: 20px;
}

.prev:hover, .next:hover{
    color: #99ccff;
    font-size: 35px;
}

.numbertext {
    color: white;
    font-size: 15px;
    margin: 15px;
    position: absolute;
    top: 8px;
    width: 100%;
    text-align: center;
}

.text {
    color: white;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    margin-top: 10px;
    background-color: grey;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: blue;
}

.dot:hover {
    background-color: #99ccff;
    border-color: blue;
}

button:hover {
    background-color: #99ccff;
    border-color: blue;
}

.transicion {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 3s;
    animation-name: fade;
    animation-duration: 3s;
}

@-webkit-keyframes fade {
    from {opacity: .3}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .3}
    to {opacity: 1}
}
