#vrview{
    position: relative;
    color: white;
}

#vrview #inner-box {
    /*background: #1A1F2D;*/
    background: rgba(98, 109, 140, 0.58);
    height: 100%;
    width: 100%;
    /*opacity: 0;*/
    opacity: 0.7;
    top: 0;
    left: 0;
    position: absolute;
    padding: 0;
    transition: opacity .5s;
}

#vrview #inner-box p {
    color: #fff;
    line-height: 30px;
    font-family: 'arial';
    text-align: center;
}

#vrview:hover #inner-box {
    opacity: 1;
    transition: opacity .5s;
}

.inner-box-align-middle{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
