@charset "UTF-8";
/* CSS Document */


body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

.preloader {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Images/bg.png');
  background-size: cover;
  z-index: -1;
}

.content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.logo {
  max-width: 200px;
}

.loading-bar {
  width: 150px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
}

.loading-line {
  width: 0%;
  height: 100%;
  background-color: #B31312;
  animation: loadingAnimation 5s infinite;
}

@keyframes loadingAnimation {
  0% { width: 0%; }
  50% { width: 50%; }
  100% { width: 100%; }
}

.copyright {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  text-align: center;
  color: white;
  font-weight: 100;
  width: 70%;
}
