@import url("style.css");



a:link {
  color: #333;
  text-decoration: none; /* Remove underline */
}

a:visited {
  color: #333;
}

a:hover {
  color: #ccc;
  text-decoration: underline;
}

a:active {
  color: #333;
}

body {
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
h1 {
    color: #2c3e50;
    margin-bottom: 30px;
}
h2 {
    color: #3498db;
    margin-top: 25px;
    margin-bottom: 15px;
}
h3 {
    margin-top: 20px;
}
p, ul {
    margin-bottom: 15px;
}
ul {
    padding-left: 20px;
}
.last-updated {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 30px;
}
footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #7f8c8d;
}