* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    background-color: #272b34;
    font-family: 'Khula', sans-serif;
    font-weight: 300;
    color: white;
    line-height: 1em;
    margin: 0;
  padding: 2em 1em;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: #272b34;
}

.logo {
  width: 200px;
  height: 160px;
  top: 0;
  left: 0;
}
 
.graph-container {
    width: 45%;
    display: inline-block;
}

.stat-box {
  width: calc(12% - 15px);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: grey;
  color: #272b34;
  border-radius: 5px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.stat-box h2 {
  font-size: 0.8vw;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1.2vw;
  font-weight: 600;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-box-container {
  text-align: center;
  margin: auto;
}

.stat-box-container_frontpage {
  text-align: center;
  margin: auto;
  width: 78%;
}


.plot-wrapper {
  text-align: center;
}

table.center {
  margin-left: auto;
  margin-right: auto;
}

table {
  width: 80%;
  text-align: center;
  font-size: 0.9vw;
}

table tr {
  height: 50px;
}

table tr:not(:first-child):hover {
  background-color: lightgray;
}

a {
  color: inherit;
  text-decoration: none;
}

.last-modified {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px;
}

.error {
  color: red;
  text-align: right;
}
