/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 15px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ddd;

}
* {
	--mainColor: rgba(12,42,120,1);
	--acentColor: rgba(250,120,112,1);
	--bgColor: rgba(32,35,33,1);
	--fgColor: rgba(200,210,235,1);
	box-sizing: border-box;
	--shadow: rgba(0,0,0,0.2);
}
@font-face {
	font-family: roboto, sans-serif;
}
@keyframes idle {
    0%  {
          transform:translateY(0);
          background-color: rgba(200,210,235,0);
      }
    20% {
          background-color: rgba(200,210,235,1);
    }
    40% {
          background-color: rgba(200,210,235,0.7);
      }
    100%:{
          transform:translateY(20px);
          background-color: rgba(200,210,235,0);
      }
}
@keyframes loadup {
  0% {
      opacity: 1;
    }
  100%{
      opacity: 0;
  }
}
html{
	font-size: 67.5%;
	font-family: roboto, sans-serif;
	font-weight: 200;
}
body::before{
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #444444;
  background: radial-gradient(circle, rgb(42, 46, 50), rgb(23, 34, 38));
}
body{
  width: 100vw;
	padding: 0;
	margin: 0;
	font-size: 9.2rem;
	text-align: center;
	color: var(--fgColor);
}
#loadcover{
  background-color: black;
  width: 100%;
  height: 100%;
  position: absolute;
  animation-name: loadup;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
main {
  width: 100%;
  opacity: 0;
  position: absolute;
  margin: auto;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%,-50%);
  transition: all 0.5s ease-in-out;
  animation: loadup 2s ease-out;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  animation-direction: reverse;
}
main > p {
  margin-top: 120px;
  margin-bottom: 50px;
}
#w1 {
  transform: translateX(-50px);
  animation-delay: 0s;
}
#w2 {
  transform: translateX(0px);
  animation-delay: 0.833s;
}
#w3 {
    transform: translateX(50px);
    animation-delay: 1.666s;
}
.idlepoints{
  position: absolute;
  left: 50%;
  background-color: rgba(200,210,235,0);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-top: 0;
  animation-name: idle;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: reverse;
}
#bm{
  position: absolute;
  width: 100px;
  right: 50%;
  top: 0;
  opacity: 0.25;
  transform: translateX(50%);
}
@media screen and (max-width: 980px) {
	body{
		font-size: 3.6rem;
	}
  .idlepoints{
    width: 5px;
    height: 5px;
    border-radius: 50%;
  }
  main > p {
    margin-top: 40px;
    margin-bottom: 35px;
  }
}
@media screen and (max-height: 500px) {
	body{
		font-size: 3.6rem;
	}
  .idlepoints{
    width: 5px;
    height: 5px;
    border-radius: 50%;
  }
  main > p {
    margin-top: 40px;
    margin-bottom: 35px;
  }
}
