body {
  background-color: #FF00FF;
  background-image:
    repeating-linear-gradient(45deg, #FF66FF 0, #FF66FF 10px, #FF00FF 10px, #FF00FF 20px);
  color: #000080;
  font-family: 'Times New Roman', serif;
  margin: 0;
  padding: 0;
}

a {
  color: #0000EE;
  text-decoration: underline;
}

a:visited {
  color: #551A8B;
}

a:hover {
  color: #FF0000;
  background-color: yellow;
}

h1 {
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 2px 2px #FFFF00;
}

.rainbow-text {
  background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: 'Comic Sans MS', cursive;
}

hr {
  border: 2px inset #000080;
}

table {
  font-family: Verdana, sans-serif;
}

textarea, input[type="text"] {
  font-family: 'Courier New', monospace;
  background-color: #FFFFCC;
  border: 2px inset #808080;
}

input[type="submit"], input[type="reset"] {
  background-color: #C0C0C0;
  border: 2px outset #FFFFFF;
  font-weight: bold;
  cursor: pointer;
}

::selection {
  background: #FFFF00;
  color: #FF0000;
}
