.orientation-msg-container{
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    background-color: #2B0A04;
    z-index: 123456789;
}
.resizeimage {
	max-width:100%;
	height:auto;
   border: 1px solid #FFF;
   border-radius: 8px;
}
.orientation-msg-text{
    font-size: 40px;
    font-family: "Lora", serif;
    color: #FFF;
    text-align: center;
    width: 80%;

    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

@media (max-width: 767px) {
    .orientation-msg-text{
        font-size: 30px;
    }
}

@media (max-width: 500px) {
    .orientation-msg-text{
        font-size: 24px;
    }
}
