﻿
/*@media screen and (orientation: landscape) {
    html {*/
        /* Rotate the content container */
        /*transform: rotate(-90deg);
        transform-origin: left top;*/
       /*  Set content width to viewport height */
        /*width: 100vh;*/
         /*Set content height to viewport width */
        /*height: 100vw;
      
        overflow-x: hidden;
        position: absolute;
        top: 100vh;
        left:0%
       
    }
}*/

/*@media screen and (orientation: landscape) {
    html {
        transform: rotate(-90deg);
        transform-origin: right top;
        width: 100vh;
        height: 100vw;
        overflow-x: hidden;
        position: absolute;
        top: 100vh;
        right: 0;
    }
}*/

.bgcolor {
    /*background-image:url('../images/bgimage.gif');*/
    /* background: linear-gradient(180deg, rgba(188, 250, 239, 0.933333) 0%, #60b8b1 50.04%);*/
    /*background: linear-gradient(180deg, rgba(188, 250, 239, 0.933333) 0%, #92CBC6 50.04%);*/
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    min-height: 100%;
   /* overflow: hidden;*/
    overflow-x: hidden;
    overflow-y:scroll;
}
/*.headcolor {
    background-color: #1B4578;
    color: #92CBC6;
}*/

.headcolor {
    background: #1B4578;
    color: #92CBC6;
    text-align: center;
    padding: 7px 0;
    font-size: 1.5rem;
}
.h2color {
    margin: 0 auto;
}

.container-fluid{
    padding-left:0px;
    padding-right:0px;
}
.faiconsleft {
    animation: slideLeft 1s ease-in-out infinite alternate;
    color: #AEEFFF;
    text-shadow: 2px 2px 4px #000000;
    line-height: normal;
   
}



@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-12px);
    }
}

.faiconsright {
    animation: slideRight 1s ease-in-out infinite alternate;
    color: #AEEFFF;
    text-shadow: 2px 2px 4px #000000;
    line-height: normal;
   
}


@keyframes slideRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(12px);
    }
}

