
html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  background-color: #121b1e;
  color: #e0e0e0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.bg-fast {
  background-image: url('../images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

header {
  background: #0d0d0d;
  color: #b87333;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
}

.hamburger {
  background: none;
  border: none;
  color: #b87333;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a,
nav a:visited,
footer a,
footer a:visited {
  color: #b87333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

nav a:hover,
footer a:hover {
  text-shadow: 0 0 2px #b87333;
}

main {
  flex: 1;
  padding: 2rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #0d0d0d;
  color: #b87333;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  nav {
    display: none;
    flex-direction: column;
    background: #0d0d0d;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 1rem;
    width: 200px;
  }
  nav.show {
    display: flex;
  }
}
