html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  margin: 0;
  background-color: #202020;
}
.header {
  padding: 40px;
  background: white;
  border-bottom: 1px solid #4040d0;
}
.logo {
  font-weight: 300;
  color: #4040d0;
  margin: 0;
  line-height: 0.8;
}
@media only screen and (min-width: 420px) {
  .logo {
    font-size: 54px;
  }
}
@media only screen and (max-width: 419px) {
  .logo {
    font-size: 38px;
    text-align: center;
  }
}
.tagline {
  margin: 0;
  font-weight: 100;
  line-height: 0.8;
  font-style: italic;
}
@media only screen and (min-width: 420px) {
  .tagline {
    font-size: 20px;
  }
}
@media only screen and (max-width: 419px) {
  .tagline {
    font-size: 15px;
    text-align: center;
  }
}
.dashboard-view {
  margin-top: 40px;
  display: flex;
  justify-content: space-evenly;
}
.dashboard-item {
  padding: 20px;
  min-width: 250px;
  width: 30%;
  background-color: white;
}
.login-view {
  padding: 20px 20px 30px 20px;
  margin: 60px auto;
  max-width: 360px;
  width: 100%;
  background: white;
}
.login-view form {
  margin: 0 auto;
  width: 75%;
}
.login-title {
  text-align: center;
  margin: 0 0 10px 0;
}
.submit-row {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.form-field input {
  box-sizing: border-box;
  width: 100%;
  height: 30px;
}
.form-field + .form-field {
  margin-top: 10px;
}
h1 {
  font-weight: 100;
}
button {
  background-color: #4040d0;
  color: white;
  border: none;
  padding: 10px 20px;
}
.top-stat {
  font-size: 25px;
  color: #4040d0;
}
.stats {
  width: 100%;
}
.stats th {
  font-weight: 100;
  text-align: left;
}
.stats td {
  text-align: center;
}
