<?php
/**
*
* @package phpBB Extension - Screensaver
* @copyright (c) 2025 martin - https://www.martins-play-ground.uk
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/

html {
  background: rgb(0 0 0);
  height: 100%;
  overflow-x: hidden; /* Lets kill the bottom scroll bar if scroll bars allowed this bar is not needed */
}

body {
  margin:  0;
  padding: 0 0 1px;
}

.innerDiv {
  position: fixed;
  top: 20px;
  width:100%;
  text-align: center;
  z-index: 9999;
}
  
#Matrix {
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

#page-footer .navbar, .page-header-navbar, #nav-breadcrumbs {
  z-index: 2 !important;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  
  100% {
    opacity: 1;
  }
}

span1 {
    font-size: 18px;
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.9s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}
