*{
  padding: 0;;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
body{
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}
.top{
  padding: 50px 0;
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  min-height: 20rem;
  background-color: rgb(5, 5, 53);
}
.para{
  margin: 50px 0;
  width: 100%;
  min-height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.bottom{
  padding: 100px 0;
  display: flex;
  justify-content: center;
  margin-top:-40px;
}
.box {
  padding: 1rem;
  margin: 15px;
  width: 210px;
  height: 200px;
  box-shadow: 0 0 5px 1px white;
  backdrop-filter: blur(6px);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  user-select: none;
  font-weight: bolder;
  color: #7aa8c0;
}
.box:hover {
  border: 1px solid black;
  transform: scale(1.05);
}
.box:active {
  transform: scale(0.95) rotateZ(1.7deg);
}


.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: rgb(5, 5, 53);
  font-size: 16px;
  background-color: ;
  border-radius: 100px;
  font-weight: 600;
  color: #1f387e;
  box-shadow: 0 0 0 2px #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: rgb(5, 5, 53);
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: rgb(5, 5, 53);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: white;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #1f387e;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px greenyellow;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}
.app{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  background-color: rgb(5, 5, 53);
}
.app_container{
  background-color: white;
  box-shadow: 0 0 10px 2px rgb(5, 5, 53);
  border-radius: 10px;
  width: 80%;
  height:80%;
  margin: 10px 0;
}
.pie_chart{
  width: 100%;
  height: 20rem;
  display: flex;
}
.pie{
  box-shadow: 0 0 6px 1px grey;
  border-radius: 8px;
  margin: 2rem 2rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
}
.person{
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.person span{
  box-shadow: 0 0 6px 1px grey;
  border-radius: 8px;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  width: 50%;
  height: auto;
  justify-content: space-between;
}
.person input{
  border: none;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid black;
  width: 50px;
}
.track_data{
  width: 100%;
  min-height: 20rem;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.add_data{
  box-shadow: 0 0 6px 1px grey;
  border-radius: 8px;
  height: 8rem;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}
.input_data input{
  margin: 0 10px;
  padding: 10px;
  outline: none;
  border: none;
  border-bottom: 1px solid black;
}
.input_data input:focus{
  border-bottom: 2px solid black;
}

.add_button {
  margin: 2rem 0;
}
.add_button button{
  cursor: pointer;
  border-radius: 4px;
  color: white;
  padding: 8px 35px;
  border: none;
  background-color: rgb(5, 5, 53);
}
.item_data{
  border-radius: 4px;
  width: 50%;
  min-height: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card_container{
  box-shadow: 0 0 6px 1px grey;
  border-radius: 5px;
  margin: 6px 0;
  width: 70%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.card_item_1{
   display: flex;
    justify-content: space-between;
    width: 40%;
}
.delete{
  cursor: pointer;
  font-size: 1.5rem;
}
.footer{
  text-align: center;
  width: 100%;
  height: 2rem;
  background-color: rgb(5, 5, 53);
  color: white;
}
.footer a{
  color: white;
}
.dot{
  width: 5px;
  height: 5px;
  background-color: black;
  margin: 1px 0;
}
.card_item_2{
  display: flex;
}
.card_item_2 span{
  margin-top: 3px;
  margin-left: 10px;
  cursor: pointer;
}
.edit{
  padding: 1px 9px;
  position: absolute;
  left: 51rem;
  background-color: rgb(67, 65, 65);
  color: white;
}