.carousel{
    position: relative;
}

.carousel__item{
    height: 550px;
    padding: 1em;
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 2em;
    display: none;

}
.carousel__item--selected{
    display: block;
}
.carousel__nav{
    width: 100%;
    padding: 20px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #EDE8DC;
    text-align: center;
}

.carousel__button{
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #D95929;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.carousel__button--selected{
    background: gray;
}

figure{
    animation: 10s slide infinite;
}

@keyframes slider {
    0%{
        left:0;
    }
    33.3%{
        left:-33.3%;

    }
    66.6%{
        left:-66.6%;
    }
    100%{
        left:-100%;
    }
}
