@import url(https://fonts.googleapis.com/css?family=Lato);
html, body {
  height: 100%;
}

body {
  background-color: #3479ee;
}

.container {
  background-color: #fff;
  min-height: 100%;
  padding: 40px;
}

h1, h2, h3 {
  font-family: "Lato";
  color: #3479ee;
}

p {
  font-family: "Lato";
  font-size: 18px;
}

span {
  color: #eea934;
  font-weight: bold;
}

label {
  font-family: "Lato";
  color: #3479ee;
  font-size: 16px;
  margin-top: 20px;
  padding-bottom: 5px;
}

.form-control:focus {
  border: 2px solid #3479ee;
  transition: 0.3s;
  opacity: 1;
}

/* C3 Chart */
.c3-chart-arc text {
  fill: #fff;
  font-family: "Lato";
  font-size: 16px;
}

.c3-tooltip tr {
  border: 1px solid #3479ee;
}

.c3-tooltip th {
  background-color: #3479ee;
  font-size: 14px;
  padding: 2px 5px;
  text-align: left;
  color: #fff;
}

.c3-legend-item {
  font-size: 12px;
  font-family: "Lato";
}

.c3-legend-background {
  opacity: 0.75;
  fill: white;
  stroke: lightgray;
  stroke-width: 1;
}

/* Brand */
.brand {
  position: absolute;
  bottom: 5%;
  right: 10%;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.brand:hover {
  opacity: 1;
  transform: scale(1.2);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}