/* Early 2000s CSS VIBES - Louis' Page */

/* Tiled background image is essential! */
body {
    background-color: #000080; /* Navy Blue fallback */
    background-image: url('tile.gif'); /* *** YOUR CUSTOM TILE BACKGROUND *** */
    background-repeat: repeat; /* Make sure it tiles! */
    color: #FFFFFF; /* White text for contrast */
    font-family: 'Comic Sans MS', 'Arial', sans-serif; /* The most loved/hated font */
    margin: 50px; /* Give it some space */
}

/* Headings with bright colors */
h1 {
    color: #FF00FF; /* Bright Magenta */
    text-align: center;
    border: 5px double #FFFF00; /* Neon Yellow double border */
    padding: 10px;
    background-color: #000000;
}

h2, h3 {
    color: #00FF00; /* Neon Green */
}

/* Hyperlinks need to look distinctly like links! */
a:link {
    color: #00FFFF; /* Cyan */
}
a:visited {
    color: #FF00FF; /* Magenta */
}
a:hover {
    background-color: #FFFF00; /* Yellow highlight on hover */
    color: #000000;
}

/* Centering was often used on images */
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: none; /* No ugly borders on the GIFs! */
}

/* Center tags are deprecated, but this makes the text center naturally */
center p, center h3 {
    text-align: center;
}

/* Start https://www.cursors-4u.com */
* {
  cursor: url("https://ani.cursors-4u.net/cursors/cur-13/cur1162.png") 0 0,
          url("https://ani.cursors-4u.net/cursors/cur-13/cur1162.ani") 0 0,
          auto !important;
}
/* End https://www.cursors-4u.com */
