html, body {
  margin:0;
  padding: 0;
  background: #fff;
  color: #333;
}
#slider-container{
  width: 500px;
  height: 500px;
  position: relative;
  overflow: none;
  margin: 0px;
  padding: 0px;
  box-sizing:border-box;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  }

.hidden{
  opacity: 0;
}

.slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin:0;
  padding: 0;
  box-sizing:border-box;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  }

.slide{
	position: absolute;
	top :0px;
	left: 0px;
	width: 100%;
	height: 100%;
	margin:0;
	padding: 0;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}


/* fade animation */
.fade{
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade{
  from {opacity: .1}
  to {opacity: 1}
}

#fullscreen {
  border: 0px solid #c99;
  border-radius: 2px;
  box-shadow: 0 0 0px 0px #CC9999;
  padding: 0 10px 5px;
  /* 
	it is recommended to explicitly set 'color' and 'background-color' properties for "fullscreened" object, 
	because otherwise Opera will use default styles "background-color: #000000; color: #fffff;".
   */
   background: #1afafa;
   
  color: inherit; 
}



#textframe{
    position: absolute;
    top :5%;
    width: 90%;
    height:255px;
    color: #FFF; 
    left :5%;
    border: 0px solid rgba(0, 255, 0, 1.0);
    overflow: hidden;
    background-color: rgba(99, 0, 0, 0.0);;
    display: flex;
    justify-content: center;    
    }


#text_area{
    position: absolute;
    top :10px;
    width: 90%;
    left :5%;
    text-align: center;
    border: 0px solid rgba(222, 222, 222, 8.0);
    display: inline-block;
    vertical-align: middle;
    opacity: 1;
        
 
    
    } 


#mytext{
    position: absolute;
    top :0px;
    left :10% ;
    width:80%;
    height:auto;
    font-family: 'Roboto','Open Sans', sans-serif;
    font-size: 3vw;
    line-height:  4.5vw;
    color: #FFF; 
    text-align: center;
   // -webkit-text-stroke-width: 1px;
   // -webkit-text-stroke-color: black;
    border: 0px solid rgba(99, 0, 0, 0.0);
    display: inline-block;

    vertical-align: middle;
    opacity: 1;
 
    z-index: 20; 
    padding-left: 10px;
    padding-right: 10px;

    }

#textbackground{
    position: absolute;
    top :5px;
    left :0px;
    width:100%;
    height:100%;
    color: #FF0; 
    text-align: center;
    opacity: 1;
    z-index: 10; 
    }


.blur-box {
    width: 100%;
    height: 100%;
    left: 0px;
    border: 0px solid rgba(2, 0, 250, 1.0);
    opacity: 1;
    text-align: center;
    display: flex;
    justify-content: center;    
    }


.blur-rectangle {
    position: relative;

    line-height: 11115px;
    width: 90%;
    height: 80%;
    top: 10px;
    //border: 0px solid rgba(2, 0, 250, 1.0);
    background-color: #222;
    opacity: 0.7;
    box-shadow: 0 0 5px 5px #222;
    display: flex;
    justify-content: center;
    border-radius: 20px 20px 20px 20px;
    }


#aaa{
  position: absolute;
  top :1px;
  left :1px;
  

} 
#image2{
  position: absolute;
  top :100px;
  left :1px;
  

}  
#infoline{
    position: absolute;
    bottom: 0;
    width: auto;
    min-width: 50px;
    height:auto;
    text-shadow: 1px 1px #000000;
    font-size: 25px;
    right :0%;
    color :#7f7;
    border: 0px solid #880;
    overflow:hidden;
    background-color: rgba(11, 11, 11, 0.7); 
    text-align: right;
    float: right;
    padding-left: 10px;
    padding-right: 10px;
    }

 
#infopane{
  position: absolute;
  top: 20%;
  left :70%;
  width: 20%;
  height:50%;
  text-shadow: 2px 2px #000000;
  font-size: 18px;
  display: none;
  color :#fff;
  border: 0px solid #880;
  background-color: rgba(0, 77, 0, 0.4); 
  overflow:auto;
   
}


#logo{
    position: absolute;
    left :3%;
    top :5%;
    width: 30%;
    height:auto;
    opacity: 0;
    }


.blur {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    } 


.color1{
    color: #FFFF00;
}
.color2{
    color: #ff006f;
}