@charset "utf-8";

@keyframes animation {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes animation_box {
  0% {opacity: 0; transform: translate(-50%, -50%) scale(120%);}
  100% {opacity: 1;}
}
@keyframes animation_2 {
  0% {opacity: 0; transform: scale(150%);}
  100% {opacity: 1; transform: scale(100%);}
}
@keyframes hidePreloader {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@keyframes preloader {
	  0% {transform: scale(1);}
     50% {transform: scale(1.2);}
    100% {transform: scale(1);}
}

* {
	-ms-user-select: none; 
	-moz-user-select: none; 
	-webkit-user-select: none; 
	user-select: none;
}
body {
	overflow: hidden;
    background: linear-gradient(to bottom, #001, #111);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    margin: 0;
}
#preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
	animation: preloader 1s forwards;
	animation-timing-function: ease;
    animation-iteration-count: infinite;
	z-index: 100;
}
#preloader.hide-preloader {
    animation: hidePreloader 2s;
}

#preloader.preloader-hidden {
    display: none;
}


.box {
    opacity: 0;
	align-items: center;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    background-color: #000;
	box-shadow: 0 0 20px rgba(0,0,0,0.8);
	margin: 0 auto;
	border-radius: 30px;
    animation: animation_box 2s forwards;
	animation-delay: 2s;
	max-height: inherit;
	max-width: 500px;
}
.buttons-container {
 align-items: center;
 position: relative;
 width: 80%;
 margin: auto;
 margin-top: 20%;
 display: flex;
 justify-content: space-around;
 margin-bottom: 20%;
}
.button {
 opacity: 0;
 animation-delay: 3s;
 align: center;
 margin: auto;
 width: 50%;
 margin-left: auto;
 animation: animation_2 2s forwards;
}
.button:last-child {
 margin-right: auto;
}
.img_but:hover {
 transform: scale(1.2);
}
.img_but{
 transition: transform .2s;
}
.logo{
 opacity: 0;
 animation-delay: 4s;
 align-items: center;
 margin: auto;
 display: flex;
 justify-content: space-around;
 width: 80%;
 height: 80%;
 margin-top: 5%;
 animation: animation 1s forwards;
}
.hr {
 height: 1px;
 width: 60%;
 margin: auto;
 margin-top: -10%;
 position: relative;
 background-color: #333;
 animation: animation 1s forwards;
}
.text{
  text-align: center;
  margin: auto;
  color: #999;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: 0.5rem;
  width: calc(100% + 0.225rem);
  animation: animation 3s forwards;
}