@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_areya_v3.png) no-repeat;
	background-size: contain;
	background-position: center center;
}

.center-screen-content-404 {
	background: url(2000x600_splash_image_404_areya_v3.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 */

.css-animation-250px div {
  position: absolute;
  width: 250px;
  height: 250px;
  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(areya-loading-static-image-250x250.png);
}
.css-animation-250px div:nth-child(1) {
  animation: css-animation-250px1 1s infinite;
}
@keyframes css-animation-250px1 {
  0% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* 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           =
==================================================*/