body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

p {
  padding: 0 20px;
  margin-top: 0px;
}

header, nav, footer {
    text-align: center;
    background-color: #8a2be2; /* Purple color */
    color: #fff; /* White text color */
}

.logo {
    padding-top: 20px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff; /* White text color */
}

nav a:hover {
    color: #ffcc00; /* Yellow text color on hover */
}

.content {
    text-align: center;
    margin: 20px;
}

.links-table {
    width: 50%;
    margin: auto;
    text-align: center;
}

footer {
    background-color: #8a2be2; /* Purple color */
    color: #fff; /* White text color */
    padding: 10px;
}
/* unvisited link */
a:link {
  color: black;
}

/* visited link */
a:visited {
  color: black;
}