/* Menu Styling */
#menu {
  background-color: #222;
  padding: 10px;
  text-align: center;
  border-bottom: 3px solid #444;
}

#menu a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

/* Link States for Menu */
#menu a:link {
  color: white;
}

#menu a:visited {
  color: lightgray;
}

#menu a:hover {
  color: yellow;
  text-decoration: underline;
}

#menu a:active {
  color: orange;
}

/* News Story Layout */
.story {
  width: 85%;
  margin: 20px auto;
  border: 2px solid #ccc;
  padding: 20px;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
}

/* Float image to the right */
.float-img {
  float: right;
  width: 150px;
  margin-left: 20px;
}

/* Custom styled continue reading link */
.continue {
  color: blue;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}

.continue:hover {
  color: red;
  text-decoration: underline;
}
