/*---------------------------------------------
  Font
---------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/*---------------------------------------------
  Utility
---------------------------------------------*/

body {
  margin: 0;
  background: #161f36;
  font-family: 'Montserrat', sans-serif;
}

/*---------------------------------------------
  Preloader
---------------------------------------------*/

#preloader-background {
  background: #0a0e19;
  background-image: url('../img/background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

h1 {
	color: #ffffff;
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

#status {
  padding-left: 10px;
  padding-right: 10px;
}

#status > h1 {
  color: #f0f7fc;
  font-size: 35px;
  text-align: center;
  margin: 0;
}

#center-image {
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 200px;
}

#preloader {
  background-image: linear-gradient(60deg, #0a0e19 10%, transparent 100%);
  color: #ededed;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

#center-image {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: spinner;
  animation-name: spinner;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/*---------------------------------------------
  Home Page
---------------------------------------------*/

#header .overlay-color {
  background-image: linear-gradient(120deg, #0a0e19 1%, transparent 100%);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

#header .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-image: url(../img/background.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -12;
  filter: blur(5px);
}

#header > .content {
  position: absolute;
  top: 38%;
  transform: translateY(-38%);
  text-align: center;
  width: 100%;
  z-index: 2;
}