* {
  padding: 0;
  margin: 0;
}
/* kita buat menu dengan background abu-abu */
.menu {
  background: #333;
  padding: 14px 16px;
  margin: 0;
}

.menu ul .active {
  text-decoration: underline;
}

/* pada saat kita klik maka akan berubah warna menjadi merah */
.menu ul .active a {
  color: red;
  text-align: center;
}

.menu ul li {
  list-style: none;
  text-decoration: none;
  display: inline;
  padding: 14px 16px;
  line-height: 50px;
}

.menu ul li a {
  color: #BDEDFF;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: bold;
}

.content {
  padding: 1rem;
  line-height: 20px;
  height: 300px;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem 0;
}