/* Body styles */
body {
  background-color: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* Header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

img {
  border-radius: 60px;
}


nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin-right: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

/* Main styles */
main {
  padding: 20px;
}

article {
  margin-bottom: 40px;
}



article h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

article .byline {
  font-size: 14px;
  margin-bottom: 20px;
  
}

article img {
  max-width: 100%;
  margin-bottom: 20px;
}

article p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Footer styles */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}
