:root{
    --window-width: 700px;
    --window-height: 500px;
}

.wrap {
    padding-top: 5%;
    height: 700px;
    max-height: 700px;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

@media only screen and (max-width:1200px){
    :root{
        --window-width: 100%;
        --window-height: 100%;
    }

    .wrap {
        display: none;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.cubewrapper {
    perspective: 5000px;
    perspective-origin: center;
    display: flex;
    justify-content: center;
    max-width: 1000px;
    /* margin-bottom: 150px; */
}

.cube {
    /* width: 80%; */
    border-radius: 15px;
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.75);
    border: solid 1px #3F3F3F;
    /* border: solid 2px #ececec; */
    background-color: #202020;
    transform: scaleX(1) scaleY(1) scaleZ(1) rotateX(var(--mousedegx)) rotateY(var(--mousedegy));
}

.window {
    width: var(--window-width);
    max-width: 700px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.75);
    border: solid 1px #3F3F3F;
    background-color: #202020;
    margin-bottom: 5%;
    /* margin: 25px; */
}

.window-toolbar {
    display: flex;
    justify-content: baseline;
    align-items: center;
    width: 100%;
    height: 30px;
    border-bottom: solid 1px #3F3F3F;
    text-align: center;

    /* background-color: #ececec; */
}