@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
html,body{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
.insectropolis{
	font-family: arial, sans-serif;
}
.insectropolis-text{
	margin: 10px 0;
}
.insectropolis-videocontainer{
    position: relative;
    cursor: crosshair;
    overflow: hidden;
}
.insectropolis-videocontainer p{
    margin: 0;
}
.insectropolis-videocontainer-video{
    width: 100%;
    z-index: 1;
}
.insectropolis-videocontainer-image{
    position: absolute;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
}
.insectropolis-videocontainer-button{
	position: absolute;
    color: #000;
    padding: 6px 10px;
    box-shadow: 4px 7px 3px #00000052;
    border: 4px outset;
    font-size: 11px;
    -webkit-transition: 2s opacity ease;
    -moz-transition: 2s opacity ease;
    -ms-transition: 2s opacity ease;
    transition: 2s opacity ease;
    cursor: pointer;
    z-index: 4;
    background: #ccc;
}
.insectropolis-videocontainer-voice{
	position: absolute;
    z-index: 3;
    padding: 20px;
}
.insectropolis-videocontainer-voice-dot{
	display: block;
    width: 1em;
    height: 1em;
    background: #fff;
    border-radius: 20px;
    margin: 0px 10px 100px 0px;
    float: left;
    animation: blink normal 1.5s infinite ease-in-out;
}
.insectropolis-videocontainer-voice-text,
.insectropolis-videocontainer-voice-cursor{
	color: white;
	display: inline;
}
.insectropolis-videocontainer-voice-cursor{
	animation: blink normal 1.5s infinite ease-in-out;
}
.insectropolis-videocontainer-letter{
	position: absolute;
	z-index: 3;
	color: white;
	font-family: arial, sans-serif;
	font-size: 120px;
}
