* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(231, 89, 144, 0.575);

  padding: 20px;
  border-radius: 10px;
  width: 50%;
  max-width: 600px;
  box-shadow: 5px 5px 125px rgb(32, 32, 32);
}
h1 {
  font-size: 2rem;
}
.user_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: start;
}
.user_input_container {
  display: flex;
  justify-content: space-between;
}
#user_input {
  width: 85%;
  padding: 0.8rem;
  border-radius: 10px;
}
#search_btn {
  padding: 0.6rem;
  border-radius: 10px;
}
.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #299f5d;
  position: reletive;
  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: z;
}
.progress {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
}
.stats_cards {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-evenly;
}

h4 {
  font-size: 1rem;
}

.card {
  background: rgb(213, 203, 7);

  width: 40%;
  max-width: 290px;
  padding: 10px;
  border-radius: 10px;
  font-size: 2rem;
  min-height: 4rem;
}
