@import url("https://fonts.googleapis.com/css?family=Montserrat:600,400");
* {
  outline-width: 0;
  font-family: "Montserrat" !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body{
      width:0%;
      height:0%;
      overflow:hidden;
      background-color: #000;
}

#container {
  height: 100vh;
  background-size: cover !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

#maincontainer {
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  animation: fadeIn ease 5s;
  -webkit-animation: fadeIn ease 5s;
  -moz-animation: fadeIn ease 5s;
  -o-animation: fadeIn ease 5s;
  -ms-animation: fadeIn ease 5s;
  animation-delay: 3.7s;
}
#maincontainer .childcontainer {
  padding: 45px 30px;
  box-sizing: border-box;
  width: 400px;
}
#maincontainer .childcontainer:before {
  content: "";
  background-size: cover !important;
  /*box-shadow: inset 0 0 0 3000px rgba(0, 0, 0, 0.75);*/
  filter: blur(10px);
  position: absolute;
  width: 150%;
  height: 150%;
  top: -50px;
  left: -50px;
}

form {
  padding-bottom: 15px;
  position: relative;
  text-align: center;
  height: 100%;
}
form h1 {
  margin: 0 0 15px 0;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
form .maininfo {
  display: flex;
  align-items: center;
  justify-content: center;
}
form .maininfo .img {
  background: #000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

form .maininfo .img img {
  width: 100%;
}
form .maininfo p {
  padding-left: 10px;
  color: #fff;
}
form .maininfo p span {
  font-family: "Montserrat";
  font-weight: 600;
}
form .maininfo p .smalltxt {
  padding-left: 5px;
  font-size: 12px;
  opacity: 0.7;
}
form .maininfo p .txtname {
  padding-left: 5px;
  font-size: 12px;
}

.logoContainer {
  padding: 45px 30px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.logoContainer img {
  width: 150px;
  margin-bottom: -5px;
  display: block;
  position: relative;
}
.logoContainer .text {
  padding: 25px 0 10px 0;
}
.logoContainer:before {
  content: "";
  background-size: cover !important;
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150%;
  height: 150%;
  filter: blur(10px);
  box-shadow: inset 0 0 0 3000px rgba(40, 43, 48, 0.75);
  filter: blur(10px);
}

.repobtn {
  width: 250px;
  box-sizing: border-box;
  background: #242424;
  border: none;
  color: #fff;
  padding: 15px;
  border-radius: 3px;
  position: relative;
  bottom: 0;
  left: 0;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
  display: block;
  margin: -20px 0px 0px 50px;
}
.repobtn:hover {
  background: #1f1f1f;
}

.discordbtn {
  width: 250px;
  box-sizing: border-box;
  background: #7289DA;
  border: none;
  color: #fff;
  padding: 15px;
  border-radius: 3px;
  position: relative;
  bottom: 0;
  left: 0;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
  display: block;
  margin: 10px 0px 0px 50px;
}
.discordbtn:hover {
  background: #8c9ddd;
}

.previewbtn {
  width: 250px;
  box-sizing: border-box;
  background: #818181;
  border: none;
  color: #fff;
  padding: 15px;
  border-radius: 3px;
  position: relative;
  bottom: 0;
  left: 0;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
  display: block;
  margin: 10px 0px 0px 50px;
}
.previewbtn:hover {
  background: #9c9c9c;
}

video {
  object-fit:cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#hide {
  animation: hideAnimation 0s ease-in 3.7s;
  animation-fill-mode: forwards;
}

@keyframes hideAnimation {
  to {
    visibility: hidden;
    width: 0;
    height: 0;
  }
}

#unhideme {
  -moz-animation: cssAnimation 0s ease-in 3.7s forwards;
  /* Firefox */
  -webkit-animation: cssAnimation 0s ease-in 3.7s forwards;
  /* Safari and Chrome */
  -o-animation: cssAnimation 0s ease-in 3.7s forwards;
  /* Opera */
  animation: cssAnimation 0s ease-in 3.7s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@keyframes cssAnimation {
  to {
      width:100%;
      height:100%;
      overflow:visible;
  }
}
@-webkit-keyframes cssAnimation {
  to {
      width:100%;
      height:100%;
      visibility:visible;
  }
}

@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
}
}