html {
  
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  background: #2d3740;
  font-weight: 400;
}
body{
  padding: 1rem;
  background: #1c262f;
  color: rgb(197, 197, 197);
  width: 90%;
  margin: 0 auto;
  margin-bottom: 300px;
}
.logo {
  text-align: center;
}
svg {
  max-width: 50%
}

form#dailyEntry {
  text-align: center;
}

label {
  font-size: 1.8rem; 
}
input#entry  {
  font-family: inherit;
  background: #dddee0;
  width: 30%;
  margin: 1rem 0;
  padding: 0.8rem 0;
  border: none;
  font-size: 1.2rem;
  text-align: center;
}
#dailyEntry button {
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: bolder;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background-color: rgb(78, 235, 183);
  margin: 0.5rem 0 1rem 0;
}
ul {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
li {
  border: 1px solid;
  padding: 1rem 1.5rem;

}
.entriesWrapper {
  padding: 1rem 0;
  font-size: 1.6rem;

}
.entriesWrapper h3 {
margin: 0;
text-align: center;
font-weight: lighter;
}

#goalUpdate{
  font-size: .9rem;
  margin-bottom: 2rem;
}
#goalUpdate label{
  font-size: 1.2rem;
}
#goalUpdate input {
  margin: 0 1rem;
  width: 50px;
}
#goalUpdate button{
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: bolder;
  border: none;
  background-color: rgb(78, 235, 183);
 
}
.data {
  font-size: 1.4rem;

}
.data div {
  background-color: #141c22;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  margin: 0.5rem 0;
}

.progress {
  text-align: center;
  padding-bottom: 1rem;

}
.progress h3 {
  font-size: 1.6rem;
  font-weight: lighter;
}
.progressCircleWrapper {
  display: flex;
  justify-content: center;
}
#progressCircle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  /* background-color:#2d3740; */
  display: flex;
  justify-content: center;
  align-items: center;
}
#progressCenter {
  width: 225px;
  height: 225px;
  border-radius: 50%;
  background-color:  #1c262f;
}
@media screen and (min-width: 800px) {
  body {
    width: 60%;
  }
  

  input#entry  {
    width: 40%;
  }

  svg {
    max-width: 50%
  }
  
}
 