.link-normalize {
  color: inherit;
  text-decoration: none;
}
.nav-list {
  padding: 0;
  margin: 0;
  margin-block: 0;
  margin-inline: 0;
  padding-inline: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.illuminating-text {
  transition-property: text-shadow color;
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
}
.illuminating-text:hover {
  color: #e0e0e0;
  text-shadow: 0 0 3px #ffffff44;
}
@keyframes bouncing {
  from {
    bottom: 1.5em;
  }
  50% {
    bottom: 1em;
  }
  to {
    bottom: 1.5em;
  }
}
@keyframes loading {
  from {
    transform: translateX(30%);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes opacity_fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bell_animation {
  0% {
    transform: rotate(-10deg);
  }
  5% {
    transform: rotate(40deg);
  }
  10% {
    transform: rotate(-10deg);
  }
  15% {
    transform: rotate(45deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  25% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
* {
  box-sizing: border-box;
}
html {
  font-family: 'Roboto', sans-serif;
}
@media (orientation: portrait) {
  html {
    font-size: 2.5em;
  }
}
body {
  margin: 0;
}
header.main-header {
  font-size: 1em;
  min-height: 3em;
  color: #fff;
  background-color: #673ab7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  animation: 1s ease 0s 1 normal both running opacity_fade_in;
}
header.main-header * {
  color: inherit;
  text-decoration: none;
}
header.main-header .right,
header.main-header .left {
  width: 33%;
}
header.main-header .right {
  text-align: right;
}
header.main-header .header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header.main-header .header-center h1,
header.main-header .header-center h2 {
  margin: 0;
  font-weight: 400;
  text-align: center;
}
header.main-header .header-center h1 {
  font-weight: bolder;
}
@media (orientation: portrait) {
  header.main-header {
    font-size: 0.8em;
    padding: 25px 50px;
  }
  header.main-header .header-center {
    width: max-content;
  }
  header.main-header .left,
  header.main-header .right {
    width: 25%;
  }
}
.container {
  display: flex;
  padding: 10px 15%;
  min-height: 85vh;
  align-items: center;
  overflow-x: hidden;
}
@media (orientation: portrait) {
  .container {
    padding: 1.5em;
  }
}
footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #333;
  padding: 0.7em 0;
  font-family: 'Ubuntu', 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif;
  animation: 1s ease 0s 1 normal both running opacity_fade_in;
}
footer a {
  color: inherit;
  text-decoration: none;
  color: #bda7e3;
}
footer ul {
  padding: 0;
  margin: 0;
  margin-block: 0;
  margin-inline: 0;
  padding-inline: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
footer ul li {
  text-align: right;
  padding: 0.1em 0;
}
.copy {
  color: #aaa;
  background-color: #333;
  text-align: center;
  animation: 1s ease 0s 1 normal both running opacity_fade_in;
}
main {
  width: 100%;
  padding: 10px;
}
.record {
  border: 1px solid #3334;
  border-radius: 10px;
  padding: 0.7em 1.5em;
  margin-bottom: 0.5em;
  box-shadow: 0 3px 3px #0005;
  opacity: 0;
  animation: loading 0.5s ease-in-out;
  animation-direction: revert;
  animation-fill-mode: forwards;
}
.record .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.record .row .arrow {
  width: 2em;
  aspect-ratio: 1/1;
  background: center no-repeat;
  background-size: cover;
}
.record .row .amount {
  font-weight: bolder;
}
.record .row.lower {
  justify-content: center;
}
.record .row.lower p {
  margin-top: 0;
}
.record.expense .arrow {
  background-image: url('../../static/images/arrow_expense.png');
}
.record.expense .amount::before {
  content: '-';
}
.record.income .arrow {
  background-image: url('../../static/images/arrow_income.png');
}
.record.income .amount::before {
  content: '+';
}
.record:first-child {
  animation-delay: 0.8s;
}
.record:first-child:before {
  content: '🔔';
  font-size: 1.5em;
  position: absolute;
  transform: rotate(-10deg);
  transition: 0.5s ease-in-out;
  animation: 4s ease 0.75s infinite alternate both running bell_animation, 1s ease 0.5s 1 alternate both running opacity_fade_in;
  top: -0.5em;
  right: -0.5em;
}
.record:nth-child(2) {
  animation-delay: 1.2s;
}
.record:nth-child(3) {
  animation-delay: 1.4s;
}
.record:nth-child(4) {
  animation-delay: 1.5s;
}
@media (orientation: portrait) {
  .record:last-child {
    display: none;
  }
}
.records_view {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-items: center;
}
@media (orientation: portrait) {
  .records_view {
    min-height: 70vh;
    justify-content: center;
  }
  .records_view:after {
    content: '⌄';
    position: absolute;
    bottom: 1.5em;
    color: #673ab7;
    font-size: 2em;
    transform: scaleX(2);
    left: 50%;
    transition: bottom 1s ease;
    animation: 1s ease-in-out 1.7s 2 alternate both running bouncing, 1s ease 2s 1 normal both running opacity_fade_in;
  }
}
.overview {
  margin-top: 0.5em;
  display: flex;
  flex-direction: row-reverse;
  column-gap: 5em;
  flex-basis: 100%;
}
@media (orientation: portrait) {
  .overview {
    flex-direction: column;
  }
}
.objective {
  width: 100%;
  align-self: center;
  justify-self: center;
  text-align: center;
  animation: 1s ease 0s 1 normal both running opacity_fade_in;
  animation-delay: 1.5s;
}
.objective header {
  font-weight: lighter;
  font-size: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.5em;
}
.objective header p {
  margin: 0;
  width: min-content;
}
.objective header .logo {
  display: block;
  background: url('../../static/images/logo.png') center;
  background-size: cover;
  aspect-ratio: 1;
  height: 2em;
  border-radius: 7px;
}
@media (orientation: portrait) {
  .objective {
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.objective .gp_button a img {
  width: 80%;
  justify-self: center;
}
/*# sourceMappingURL=balanced.css.map */