body {
  background-color: black;
  background-image: url(/assets/bg.png); 
  background-repeat: repeat;
  background-attachment: fixed;
  color: red;
  font-family: "Courier New";
  cursor: url(/assets/cur.png),auto 
}

/* font sizes */
h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

p {
  font-size: 18px;
  font-weight: bold;
}

/* links */
a:link, a:visited {
  color: red;
  text-decoration: none;
}

a:hover, a:active {
  color: red;
  text-decoration: underline;
}

/* two boxes */
.column {
  float: left;
  width: 50%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}