/* Reset default styles */
html, body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Set global font and text styles */
body {
  font-family: Arial, sans-serif;
  color: #333;
}

/* Set styles for the header */
.main-header {
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-header h1 {
  font-size: 24px;
  margin: 0;
  color: #00b8d4;
}

.main-header nav ul {
  display: flex;
  list-style: none;
}

.main-header nav li {
  margin: 0 10px;
}

.main-header nav a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.main-header nav a:hover {
  color: #00b8d4;
}

/* Set styles for the main content */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

main h2 {
  font-size: 36px;
  margin: 20px 0;
}

main p {
  font-size: 18px;
  line-height: 1.5;
}

main ul {
  list-style: none;
}

main li {
  font-size: 16px;
  margin: 10px 0;
}

main a {
  color: #333;
  text-decoration: none;
}

main a:hover {
  color: #00b8d4;
}

/* Set styles for the footer */
.main-footer {
  background-color: #eee;
  text-align: center;
  padding: 20px;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.main-footer p {
  font-size: 14px;
  margin: 0;
}

/* Media queries */
@media (max-width: 768px) {
  /* Make the header and footer full width on small screens */
  .main-header, .main-footer {
    max-width: 100%;
    padding: 10px;
  }

  /* Make the navigation menu responsive on small screens */
  .main-header nav {
    display: none;
  }

  .main-header nav.responsive {
    display: block;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
.main-header nav.responsive ul {
  display: block;
}

.main-header nav.responsive li {
  display: block;
  margin: 10px 0;
}

.main-header nav.responsive a {
  display: block;
}

/* Make the main content full width on small screens */
main {
  max-width: 100%;
  padding: 10px;
}
}
