/* Basic reset and styling */
* {
  margin: 1px;
  padding: 1px;
  box-sizing: border-box;
}

/* Background styling */
body, html {
  height: 100%;
  overflow: hidden;
  background-color: #0b0d21;
  font-family: Arial, sans-serif;
}

/* Text styling */
h1 {
  color: ghostwhite;
}

h2 {
  color: ghostwhite;
}

/* Unvisited link */
a:link {
  color: lavender;
}

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

/* Mouse-over (hover) state */
a:hover {
  color: plum;
}

/* Active (selected/clicked) link */
a:active {
  color: fuchsia;
}
