* {
  margin:0;
  padding:0;
}


#banner {
  width: 300px;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background:#000;
}

#border {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width: 300px;
  height: 250px;
  border: 1px solid #000000;
  position: absolute;
  pointer-events: none;
  z-index:3;
}

#canvas {
  position: absolute;
}

#exit {
  position: absolute;
  width:100%;
  height:100%;
  cursor:pointer;
}

#loader {
  position: absolute;
  width: 300px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  border:1px solid #000;
  z-index:2;
  pointer-events: none;
  background:#000;
}

#bgloader {
  width:300px;
  height:250px;
  position: absolute;
  top: 0;
  left: 0;
  z-index:0;
}

#frameloader {
  width:300px;
  height:250px;
  position: absolute;
  top: 0;
  left: 0;;
  z-index:1;
}

#logoloader {
  width:300px;
  height:250px;
  position: absolute;
  top: 0;
  left: 0;
  z-index:1;
  opacity: 0;
  animation: fadeIn ease 1s;
  animation-fill-mode: forwards;

  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
}



@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
}   
}

