:root {
  --bg-color: rgb(47, 65, 75);
  --primary-color: rgb(34, 175, 144);
  --secondary-color: rgb(95, 95, 130);
  --text-color: rgb(255, 255, 255);
  --asset-color: #333;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display:flex;
  flex-direction:column;
}

.header {
  background-color: var(--primary-color);
  width: 100%;
  padding-top: 1vh;
  display: flex;
  flex-direction: row;
  min-height:50px
}

.header img {
  margin-left: 30vw;
  margin-right: 1vw;
}

.footer {
  background-color: var(--primary-color);
  width: 100%;
  padding-top: 3vh;
  margin-bottom: 0px;
  padding-bottom: 0px;
  min-height:50px
}

table {
  width: 100%;
  text-align: center;
}

td {
  width: 25%;
}

.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
  flex:1;
}

.flex-item {
    background: transparent;
    padding: 0.5vw;
}

#stats {
  font-size: 1.5rem;
  font-weight: bold;
}

progress {
  width: 100%;
  height: 30px;
  border: 3px;
  border-radius: 1px;
}

progress::-webkit-progress-bar {
  background-color: var(--secondary-color);
}

progress::-webkit-progress-value {
  background-color: var(--primary-color);
}