body {
  width: 100vw;
  height: 100vh;
  font-family: 'Noto Sans KR', sans-serif;
  display: flex;
  justify-content: center;
}

.container {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tracker-header {
  margin: 6vmin 0;
  font-size: 3vmax;
  font-weight: 700;
}

.tracker-total__money {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.tracker-total__money-balance {
  padding-top: 1vmin;
}

.tracker-category {
  width: 100%;
  height: 13vmin;
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 2vmin;
  margin-bottom: 3vmin;
}

.tracker-category div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tracker-category div:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.tracker-category div > span {
  margin-top: 0.4vmin;
}

.tracker-history {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.tracker-history__list {
  display: flex;
  flex-direction: column;
}

.tracker-history__list > li {
  width: 100%;
  list-style: decimal;
  margin-top: 1vmin;
}

.tracker-history__list > li span {
  display: inline-flex;
  justify-content: space-between;
}

.del-button {
  all: unset;
  font-size: 1px;
}

.tracker-transaction {
  width: 100%;
  margin-top: 3vmin;
}

.tracker-transaction__text,
.tracker-transaction__amount {
  display: flex;
  flex-direction: column;
}

.tracker-transaction__text > input,
.tracker-transaction__amount > input {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.add-transaction {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.red {
  color: rgb(234, 77, 77);
}

.blue {
  color: rgb(11, 23, 244);
}

@media (min-width: 1200px) {
  .container {
    width: 20%;
  }

  .tracker-header {
    margin: 6vmin 0;
    font-size: 2vmax;
    font-weight: 700;
  }
}

@media (min-width: 1400px) {
  .container {
    width: 15%;
  }

  .tracker-header {
    margin: 6vmin 0;
    font-size: 1.5vmax;
    font-weight: 700;
  }
}
