p {
  color: white;
  font-family: New Century Schoolbook, TeX Gyre Schola, serif;
  font-size: 25px;
  border: 17px double rgb(0, 255, 14);
  padding: 30px;
  background: rgb(39, 0, 92);
  margin: 60px;
  
}

a:link {
  color: green; /* Unvisited link color */
  text-decoration: none; /* Optional: removes the default underline */
}

a:visited {
  color: pink; /* Visited link color */
}

a:hover {
  color: red; /* Mouse over link color */
  text-decoration: underline; /* Optional: adds an underline on hover */
}

a:active {
  color: yellow; /* Selected (clicked) link color */
}