/* lightblue	#66b3e6	rgb(102,179,230)
blue	#0078c8	rgb(0,120,200)
grey	#78777a	rgb(120,119,122)
dark	#1d1d1d	rgb(29,29,29)
darkblue	#0a1633	rgb(10,22,51)
lightgrey #f2f2f2 */

:root {
  font-size: 1em;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}
html, body {
  background: white;
}
html, body, h1, p {
  margin: 0;
  padding: 0;
}
#container {
  max-width: 610px;
}
#header {
  border-top: 2px solid #0078c8;
}
#title, #footer {
  color: #1d1d1d;
}
#title {
  font-size: 1.75rem;
  padding-top: 10px;
}
#chartContainer, #footer {
  padding: 15px;
}
#title, .pie text, select, option, #description, .legendBox text {
  font-weight: bold;
}
#description {
  color: #78777a;
  padding-bottom: 10px;
}
select {
  border-radius: 10px;
  padding: 5px;
  width: 100%;
  outline: none;
  margin-bottom: 10px;
  color: white;
}
#chartContainer, #chart, select {
  background: #0a1633;
}
#footer {
  border-bottom: 2px solid #0078c8;
  background: #f2f2f2;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.legendBox text, #footer {
  font-size: .9rem;
}
#pieDiv, #footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#pieDiv {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#chartContainer {
  opacity: 0;
}
.legendBox text, .pie text {
  fill: white;
  text-anchor: middle;
}
.pie text {
  font-size: 1.5rem;
}
.slice path, .legendBox rect {
  stroke: white;
}
.slice text {
  font-size: 1rem;
}
.minor {
  font-weight: normal;
}
