/* ================= BASE ================= */
body {
  margin: 0;
  font-family: "Lato", sans-serif;
  background: #000;
  color: #fff;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  border-bottom: 1px solid #222;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}

.logo {
  font-weight: bold;
}

/* ================= HAMBURGER ================= */
.hamburger {
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
}

/* ================= MENU ================= */
.menu {
  display: none;
  flex-direction: column;
  background: #000;
  border-top: 1px solid #222;
}

.menu a {
  padding: 12px 16px;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #111;
}

.menu a:hover {
  background: #111;
}

.menu.active {
  display: flex;
}

/* ================= DESKTOP ================= */
@media (min-width: 768px) {

  .hamburger {
    display: none;
  }

  .menu {
    display: flex !important;
    flex-direction: row;
    border: none;
  }

  .menu a {
    border: none;
  }
}

/* ================= MAIN ================= */
main {
  margin-top: 70px;
  padding: 20px;
  text-align: center;
}

/* ================= HERO ================= */
.hero img {
  max-width: 400px;
  width: 100%;
}
