body {
  margin: 0;
  font-family: "Rubik", sans-serif;
  /* background-color: black; */
}
section {
  width: 45%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 1px 3px 4px rgb(176, 176, 251);
  margin: auto;
  position: relative;
  top: 100px;
  text-align: center;
}
#bigdiv {
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  border-radius: 16px;
}
#div1 {
  width: 50%;
  background-color: rgb(55, 23, 235);
  box-sizing: border-box;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: white;
}
#yr {
  font-size: 20px;
  /* font-weight: 400; */
  margin-top: 0;
  margin-bottom: 25px;
}

h1 {
  font-size: 90px;
  margin: 0px;
  margin-top: 13px;
  padding-bottom: 0;
}
h3 {
  font-size: 35px;
  margin: 0px;
  margin-top: 25px;
  padding-bottom: 0;
}
p {
  font-size: 16px;
  padding: 0px 10px;
}
#cir-div {
  width: 175px;
  height: 175px;
  padding: 20px;
  background-image: linear-gradient(rgb(25, 25, 195), rgb(55, 23, 235));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#cir-div p {
  font-size: 15px;
  margin-top: 0;
  padding-top: 0;
}
#div2 {
  width: 50%;
  background-color: white;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  text-align: left;
  box-sizing: border-box;
  padding: 10px;
  color: black;
  /* margin: 30px 0px; */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  /* align-items: center; */
}
.bar {
  width: 90%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  margin: 0 15px;

  /* justify-content: center; */
  align-items: center;
  border-radius: 25px;
}
.term {
  width: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
  /* margin: 5px; */
}
#bar1 {
  background-color: rgba(239, 108, 108, 0.05);
}
#term1 {
  color: rgb(238, 58, 58);
}
.material-symbols-outlined {
  padding-right: 7px;
  padding-left: 0;
}
h4 {
  font-size: 18px;
}
#score p {
  font-size: 18px;
  margin-right: 7px;
  color: rgb(126, 119, 119);
}
#score span {
  color: black;
}
#bar2 {
  background-color: rgba(201, 162, 7, 0.05);
}
#term2 {
  color: rgb(209, 176, 10);
}
#bar3 {
  background-color: rgba(16, 151, 41, 0.05);
}
#term3 {
  color: rgba(11, 158, 80);
}
#bar4 {
  background-color: rgba(4, 41, 143, 0.05);
}
#term4 {
  color: rgb(21, 4, 207);
}
#div2 h3 {
  font-size: 22px;
  margin-left: 14px;
  margin-top: 0;
  /* padding-bottom: 0;
  margin-bottom: 0; */
}
button {
  background-color: rgb(46, 41, 41);
  color: white;
  margin: 0 15px;
  border-radius: 35px;
  padding: 15px;
  font-size: 20px;
  border: none;
}
@media only screen and (max-width: 768px) {
  #bigdiv {
    width: 100%;
    background-color: white;
    display: block;
  }
  section {
    width: 100%;
    position: relative;
    top: 0;
  }
  #div1 {
    width: 100%;
    border-radius: 0 0 16px 16px;
  }
  #div2 {
    width: 100%;
    border-radius: 0px;
    justify-content: center;
    align-items: center;
  }
  #div2 > h3 {
    position: relative;
    left: -100px;
    margin-bottom: 10px;
  }
  .bar {
    margin-bottom: 10px;
  }
  button {
    width: 90%;
    margin-top: 5px;
  }
}
