header {
  background-color: #f2f2f2;
  padding: 10px;
}

.menu {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
}

.menu li {
  margin: 0 10px;
}

.menu li a {
  display: block;
  padding: 10px;
  background-color: #ffcc00;
  color: #ffffff;
  text-decoration: none;
}

.content {
  /* Add your styles for the content section here */
}

/* Media Query for Tablet and Phone */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: center;
  }

  .menu li {
    margin: 5px 0;
  }
}
