@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600;700;900&display=swap');


*{
  font-family: 'Poppins', Verdana;
}

body{
  background-color: #0c0c0c;
  overflow: hidden;
}

.data{
  border: 1px solid #4dff3d;
  width: 100%;
  height: 30vh;
  margin-bottom: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4dff3d;
  
}

.data h2{
  font-size: 5vmin;
}

.main-content{
  width: 100%;
  height: 40vh;
  border: 1px solid #4dff3d;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.text{
  color: #4dff3d;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text h6, .text h5{
  font-size: 3vmin;

  margin: 0;
}

#perce{
  font-size: 8vmin;
  color: #4dff3d;
  
  margin: 0;
}

.bar{
  border: 1px solid #4dff3d;
  width: 65%;
  height: 50%;
}

#full-bar{
  background-color: #4dff3d;
  height: 100%;
  width: 0%;
  transition: 8s;
}

footer{
  color: #3b3b3b;
  position: relative;
  margin: 0;
  height: 15vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

a, a:active{
  text-decoration: none;
  color: #3b3b3b;
}

a:hover{
  color: #5c5b5b;
}

@media (max-width:600px){
  .data h2{
  font-size: 4vmin;
}
}