/*/ Header */

header {
  background-color: rgba(255, 127, 80, var(--opacity));

  display: flex;
  justify-content: center;
  align-items: center;

  position: fixed;
  top: 0;
  height: 100px;
  left: 0;
  right: 0;
}

.main-values {
  background-color: rgba(0, 0, 156, 0.);

  position: relative;
}

/*/ END - Header */





/*/ Content (Points) */

.points .counter {
  font-size: 20px;

  display: block;
}

.points .counter .value {
  font-size: 30px;
}

/* these are all based on .main-values (mostly a reference to me, my memory is bad)*/
.points .per-sec {
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;

  font-size: 13px;

  display: flex;
  justify-self: center;
  align-items: baseline;

  position: absolute;
  bottom: -22px;
}

/* sorry for the weird format, ill try to make this better soon, but i dont think design will be my forte anyways*/
.points .per-sec .increment {
  font-size: 18px;

  color: rgba(255, 255, 255);

  margin: 0 0 0 3px;
}
.points .per-sec .mult {
  color: rgba(255, 255, 255, 0.85);

  font-size: 11px;

  margin: 0 3px 0 0;

  position: relative;
  top: -6px;
}

/*/ END - Content (Points) */





/*/ Content (Timer) */

.timer-counter {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.67);

  font-size: 10px;

  display: flex;
  justify-self: center;
  align-items: baseline;

  position: absolute;
  bottom: -38px;
}

.time-value {
  font-size: 13px;

  margin: 0 1px 0 3px;
}

/*/ END - Content (Timer) */