
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
  background-color: #3EECAC;
background-image: linear-gradient(19deg, #3EECAC 0%, #EE74E1 100%);
;
  height: 100vh;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: darkgrey;
  padding: 20px;
  border-radius: 5px;
  width: 50%;
  max-width: 600px;
}

h1{
  font-size: 2rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.user{
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: start;
}
.user-input-container{
  display: flex;
  justify-content: space-between;
}
#user-input{
  width: 80%;
  padding: 0.5rem;
  border-radius: 20px;
}
#search-btn{
  padding: 0.4rem;
  border-radius: 15px;
}

/* .stats-container{
  display: none;
} */

.circle{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #299f5d;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  font-weight: 700;
  background: conic-gradient(#299f5d var(--progress-degree, 0%), #283a2e 0%);
  flex-direction: column;
}
.circle span{
  position: relative;
  z-index: 2;
}
.progess{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
}
.stats-cards{
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
}

h4{
  font-size: 0.9rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.card{
  background-color: #283a2e;
  width: 40%;
  max-width: 290px;
  padding: 20px;
  border-radius: 10px;
  font-size: 1rem;
  min-height: 4rem;
}