:root {
  --theme-colors-red: #ce4231;
  --theme-colors-white: #fff;
  --theme-fonts-lato: "Lato", sans-serif;
  --nav-height: 105px;
  --header-radius: 0.2rem;
}

html,
body {
  width: 100%;
  height: 100%;
}

.nav-header {
  display: flex;
  padding: 1rem 4rem;
  justify-content: space-between;
  color: var(--theme-colors-white);
  background-color: var(--theme-colors-red);
}

.nav-brand {
  display: flex;
}

.nav-brand span {
  color: black;
}

.nav-brand a {
  margin: 0;
  line-height: 1;
  display: block;
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--theme-colors-white);
  font-family: var(--theme-fonts-lato);
}

.brand-name {
  line-height: 2;
  font-size: 1.2rem;
  font-family: "Inconsolata", monospace;
}

.nav-actions {
  display: flex;
}

.nav-actions ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.nav-actions ul li a {
  margin-left: 0.2rem;
  text-decoration: none;
  color: var(--theme-colors-white);
  font-family: var(--theme-fonts-lato);
}

.nav-actions ul li a:hover {
  text-decoration: underline;
}

.nav-action {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.nav-action a {
  text-transform: uppercase;
}

footer {
  padding: 2rem;
  background-color: #262626;
}

footer ul {
  margin: 0;
  padding: 0;
}

footer section {
  margin-top: 1rem;
  display: flex;
  justify-content: space-around;
}

footer section h5 {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--theme-colors-white);
}

.nav-footer ul {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-around;
}

.nav-footer ul::before {
  content: "";
  width: 100%;
  top: 18px;
  position: absolute;
  border: 1px solid lightgray;
}

.nav-footer ul::after {
  content: "";
  width: 100%;
  bottom: 18px;
  position: absolute;
  border: 1px solid lightgray;
}

.nav-footer ul li {
  list-style: none;
}

.nav-footer ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--theme-colors-white);
}

.nav-footer ul li a:hover {
  text-decoration: underline;
}

.nav-footer .footer-brand-icon {
  z-index: 1;
  border-radius: 50%;
  background-color: #262626;
  border: 2px solid lightgray;
}

.nav-footer .footer-brand-icon img {
  --size: 40px;

  margin: 1rem;
  width: var(--size);
  height: var(--size);
  object-fit: contain;
}

/*! Mobile: <= 768px */
@media screen and (max-width: 768px) {
  .nav-header {
    padding: 0.8rem 0;
    flex-direction: column;
    justify-content: center;
  }

  .nav-brand {
    justify-content: center;
    margin-bottom: 0.8rem;
  }

  .nav-actions {
    display: initial;
  }

  .nav-actions ul {
    justify-content: space-around;
  }

  .nav-action {
    margin-left: 0;
  }

  .nav-action a {
    display: none;
  }
}
