/* Just replace the hexes with whatever colors you need */

body {
  background-color: #000; /* Black */
  color: #fff; /* White */
  text-align: center;
  font-family: arial;
  font-size: 15px;
}

.main {
  margin: 35px 300px;
  border: 1px solid #00ff00; /* Neon green */
  border-radius: 10px;
  padding: 30px 100px;
}

h1 {
  font-variant: small-caps;
}

img {
  width: 125px;
  height: auto;
  margin-bottom: -10px;
}

a {
  text-decoration: none;
}

a:hover {
  color: #fff; /* White */
}

a:visited {
  color: #00ff00; /* Neon green */
}

a:visited:hover {
  color: #fff; /* White */
}

#title {
  color: #00ff00; /* Neon green */
}