.carousel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel__item {
    height: 800px;
    background: transparent;
    padding: 1em;
    color: black;
    display: none;
    text-align: center;
}

.carousel__item--selected {
    display: block;
}

.carousel__nav {
    width: 100%;
    padding: 20px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
}

.carousel__button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: #2f2d32;
    opacity: 0.2;
    margin: 0 4px;
    cursor: pointer;
}

.carousel__button--selected {
    opacity: 0.5;
}
