.cube-section {
    width: 100vw;
    height: 80vh;
    position: relative;
    perspective: 2000px;
    background: #222;
    padding: 0
}

#cube {
    width: 100vw;
    height: 80vh;
    position: absolute;
    transform-style: preserve-3d;
}

    #cube figure {
        margin: 0;
        width: 100vw;
        height: 80vh;
        display: flex;
        position: absolute;
        background: #222;
        color: white;
    }

        #cube figure div {
            height: inherit;
            background-size: cover;
            background-position: center;
        }

    #cube .front {
        transform: rotateY(0deg) translateZ(50vw);
        background: #7F006E;
    }

    #cube .back {
        transform: rotateY(180deg) translateZ(50vw);
        background:black;
    }

    #cube .right {
        transform: rotateY(90deg) translateZ(50vw);
        background: #2E00AF;
    }

    #cube .left {
        transform: rotateY(-90deg) translateZ(50vw);
        background: #6B002E;
    }

.p-cube {
    /*
    font-weight: normal;
    letter-spacing: 0px;*/
    font-family: 'Playfair Display SC', serif;
    font-size: 0.8rem;
    line-height: 140%;
    text-align: left;
    padding-right: 0.3rem;
    letter-spacing: 1px;
}
#cube {
    transform: translateZ(-50vw);
}

#cube {
    transition: transform 1.5s ease-in-out;
}

.button-wrap {
    position: absolute;
    bottom: 0.3rem; /*10px*/
    right: 12.5%; /*12.5*/
    transform: translateX(12.5%);
}

article {
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
}
.article-cube-image {
    max-height: 25vh;
    margin-bottom: 1rem !important;
}

.button-wrap button {
    background: #CECECE;
    border: 0px;
    border-radius: 4px;
    /*border-bottom: 3px solid #222;
    box-shadow: grey 0px 2px 2px 0px;*/
    cursor: pointer;
}

.button-wrap:hover button:not(:hover) {
    background: rgba(255, 255, 255, 0.6);
}

.button-wrap button:focus {
    box-shadow: dodgerblue 0px 2px 2px 0px;
    outline: none;
}

.article-cube {
    padding: 1rem 2rem 1rem 1rem;
}

.question-section {
    color: white;
    /*font-family: 'EB Garamond', serif;*/
    font-size: .9rem;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 1px;
    text-shadow: 1px 1px 10px black;
}

.a-question {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

a.a-question:hover {
    color: yellow;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 2rem;
    height: 2rem;
    background-color: cyan;
}

.carousel-caption-h4 {
    color: cyan;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.carousel-indicators li {
    background-color: cyan;
    width: 2rem;
    height: 5px;
    margin-bottom:0px;
}

div.carousel-caption{
    padding-bottom:0px;
}

.item-comments {
    /*position: relative;*/
    background-color: #ffffff;
    border-style: solid;
    border-color: #ccc;
    border-width: 2px;
    border-radius: 5px;
}

@keyframes reveal {
    to {
        opacity: 1;
    }
}

.shuffle {
    position: relative;
    height: 36rem;
    margin-top:0;
    /*background: #001;*/
    overflow: hidden;
}
    .shuffle img {
        /*height: 68%;*/
        opacity: 0;
        transform: scale(1.3);
    }

.reveal img {
    animation: reveal 1s 1s forwards;
}

.expose {
    border: .3rem solid #e1debf;
    transition-property: opacity;
}

* {
    margin: 0;
    padding-left: 2px;
    box-sizing: border-box;
}

body {
    background: #eee;
}

#str {
    position: relative;
    width: auto;
    padding: 1rem 1rem 1rem 1rem;
    height: auto;
    font-family: sans-serif;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    color: #fff;
    /*font-weight: bold;     z-index: 99999;*/
    background: #000;
    opacity: 0.45;
}

.subject-banner-full {
    margin: 4px 1px 4px 1px;
}

.subject-banner-half {
    margin: 4px 0 4px 0;
    padding-top: 4px;
    width: 180px;
}


