@charset "utf-8";

body, html {
	background-color: #000000;
	color: #ffffff;
}

.center-screen-content,.center-screen-content-404 {
    width: 90%;
    height: 400px;
    position: absolute;
    left: 50%; /* Centers the div horizontally on the screen */
    top: 50%; /* Centers the div vertically on the screen */
    margin: -200px 0 0 -45%; /* Is above negative HEIGHT 0 0 WIDTH divided by two */
    z-index: 1;
    text-align: center;
}

.center-screen-content {
	background: url(2000x600_splash_image_v1.png) no-repeat;
	background-size: contain;
	background-position: center center;
}

.center-screen-content-404 {
	background: url(2000x600_splash_image_404_v1.png) no-repeat;
	background-size: contain;
	background-position: center center;
}

a:link {
	color: #ffffff; text-decoration: underline;
}
a:visited {
	color: #ffffff; text-decoration: underline;
}
a:active {
	color: #ffffff; text-decoration: underline;
}
a:hover {
	color: #000000; text-decoration: none; background-color: #ffffff;
}

/*==================================================
=               Begin Preloader CSS	               =
==================================================*/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000000;
	z-index: 999; /* Makes sure it stays on top, over all other content. */
}

#status {
	width: 400px;
	height: 400px;
	position: absolute;
	left: 50%; /* Centers the loading animation horizontally on the screen */
	top: 50%; /* Centers the loading animation vertically on the screen */
	margin: -200px 0 0 -200px; /* Is above negative HEIGHT 0 0 WIDTH divided by two */
}

/* BEGIN CSS ANIMATION */

.inner-image {
  width: 250px;
  height: 250px;
  position: absolute;
  left: 50%; /* Centers the loading animation horizontally on the screen */
  top: 50%; /* Centers the loading animation vertically on the screen */
  margin: -125px 0 0 -125px; /* Is above negative HEIGHT 0 0 WIDTH divided by two */
  background-image: url(mewforce-loading-static-image-v2-inner-250x250.png);
  z-index: 99;
}
.css-animation-250px div {
  width: 250px;
  height: 250px;
  position: absolute;
  left: 50%; /* Centers the loading animation horizontally on the screen */
  top: 50%; /* Centers the loading animation vertically on the screen */
  margin: -125px 0 0 -125px; /* Is above negative HEIGHT 0 0 WIDTH divided by two */
  animation: css-animation-250px 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  background-image: url(mewforce-loading-static-image-v2-outer-250x250.png);
  z-index: 98;
}
.css-animation-250px div {
  animation-delay: -0.45s;
}
@keyframes css-animation-250px {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* END CSS ANIMATION */

/*==================================================
=               End Preloader CSS	               =
==================================================*/

/*==================================================
=            Bootstrap 5 Media Queries             =
==================================================*/

/**
* https://getbootstrap.com/docs/5.0/layout/breakpoints/
*
* Piggybacking off Bootstrap 5 breakpoints for responsive design.
*
* Styling for Mobile Devices first and then outwards towards desktop computers.
*
*/

/*==========  Mobile First Method  ==========*/

/* X-Small devices (portrait phones, less than 576px) */
/* No media query for `xs` since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
       
}

/** Basically for phones in landscape **/
@media (min-width: 576px) and (orientation: landscape) {


}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/** Basically for iPads in landscape **/
@media (min-width: 768px) and (orientation: landscape) {
    
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

        .center-screen-content,.center-screen-content-404 {
            width: 80%;
            height: 600px;
            margin: -300px 0 0 -40%; /* Is above negative HEIGHT 0 0 WIDTH divided by two */
        }
    
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    

}

/*==================================================
=          END Bootstrap 5 Media Queries           =
==================================================*/