


html{
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body{
  font:normal 75% Arial, Helvetica, sans-serif;
}

canvas{
  display:block;
  vertical-align:center;
  position: relative;
  
}

/* ---- stats.js ---- */

.count-particles{
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: red;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles{
  font-size: 1.1em;
}

#stats,
.count-particles{
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats{
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles{
  border-radius: 0 0 6px 6px;
}


/* ---- particles.js container ---- */

#particles-js{
  
  background-color: green;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}


*{
  margin: 0;
  padding: 0;
 box-sizing: border-box;
}
body{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(10deg, green, red);
}
.login{
  transition: 0.5s;
  width: 400px;
  height: 500px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 5px cyan,
  0 0 5px cyan, 0 0 5px cyan, 0 0 5px cyan;
  z-index: 1;
  
}
.login:hover{
  transform: 2px;
}


.login h1{
  margin: 25px 0;
  text-transform: uppercase;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;   
  cursor: pointer;
  color: white;

}
.heding_text{
    color: white;
    cursor: pointer;
}

h1:hover{
  color: green;
  transition: 0.5s;
  font-size: 40px;
}
.login input{
  width: 70%;
  height: 50px;
  margin: 10px 0;
  
  font-size: medium;
  padding: 5px;
  border: none;
  border-bottom: 1px solid white;
  cursor: pointer;
  outline: none;
  background:transparent;

}
.login input:hover{
  transition: 0.5s;
  background-color: white;
  border-radius: 10px;
  width: 98%;
  text-align: center;
  color: green;
  
}

button{
  width: 70%;
  height: 50px;
  background:transparent;
  border: none;
  margin: 10px 0;
  font-size: medium;
  color: white;
  border-bottom: 1px solid white;
 
  
}
button:hover{
  background-color: green;
  border-radius: 10px;
  font-size: 30px;
  transition: 0.5s;
}
.img_div img{
  width: 150px;
  height: 150px;
  margin-top: 20px;
  cursor: pointer;
  transition-duration: 1s;
  
}
.img_div img:hover{
 transform: scale(1.3);
  
}
button a{
  text-decoration: none;
  color: white;

}
canvas{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  
}
