body {
  padding: 24px;
  max-width:500px;
  margin: 0 auto;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

header {
  width: 100%;
  display: flex;
  flex-direction:row;
}

.container {
  display: grid;
  grid-gap: -1px;
  font-size: 20px;
}

.container > div {
  border: 1px solid #E8EAED;
  text-align: center;
  padding-top: 20%;
  background-color: #F8F9FA;
  position: relative;
}

.container > div.goal {
  background-color: #58A55C !important;
}

.container > div.current {
  background-color: #5285EC !important;
}
.container > div.policy {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  font-size: 40px;
}

button {
  font-size: inherit;
  vertical-align: middle;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-bottom: 16px;
}

button > svg {
  width: 40px;
  height: 40px;
}

.big {
  font-size: 1.2em;
  font-weight: bold;
}

footer {
  padding: 14px 0;
  margin: 24px 0;
  border-top: 3px solid black;
  text-align: center;
}

a {
  color: black;
  font-weight: bold;
}

button[disabled] svg {
  opacity: 0.2;
}