
body {
  color: #fff;
  background-color: #262626;
}

/* Hamburger menu on mobile by default */
.header__menu span {
  background: #fff;
}

/* Hamburger menu on mobile when menu is open */
.header__menu input:checked ~ span {
  background: #fff;
}

/* Overlay layer */
.bg {
  background-color: rgba(0, 0, 0, 0.4);
}

/* Default button (inherit from body by default) */
.btn {
  color: inherit;
  border-color: inherit;
  background: transparent;
}

/* Default button on hover and inverse button */
.btn:hover,
.btn--inverse {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}

/* Countdown background and text colors */
.countdown {
  background-color: #fff;
  color: #000;
}

/* Border color of field when form  */
.form__field--error {
  border-color: #cc2828;
}

/* Menu background on mobile */
@media(max-width: 767px) {
  .header__nav {
    background: #262626;
  }
}
