/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #111;
  background: white;
}

/* CONTAINER (THIS FIXES ALIGNMENT) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVBAR */
.navbar {
  background: white;
  border-bottom: 1px solid #eee;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.navbar a {
  margin-left: 20px;
  text-decoration: none;
  color: #666;
}

.navbar a:hover {
  color: black;
}

/* FOOTER */
.footer {
  border-top: 1px solid #eee;
  padding: 30px 0;
  text-align: center;
  color: #777;
}