@font-face {
  font-family: 'Verdana';
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Verdana', sans-serif;
  background: linear-gradient(90deg, magenta, orange, yellow, lime, teal, blue, purple);
  color: #ffffff; /* White text */
  text-align: left;
  min-height: 100vh; /* Ensures the background covers full viewport */
  padding: 20px;
}

h1, h2, h3 {
  text-align: center; /* Centers headers */
  text-transform: uppercase;
}

a {
  color: cyan;
  text-decoration: none;
}

a:hover {cursor: url('https://riddleonhermind.neocities.org/Images_1/Cursor%20test.png'), auto;
  text-shadow: 0px 0px 8px cyan;
}

.intro {
  font-size: 24px; /* Larger than disclaimer but smaller than h1 */
  text-align: left; /* Or center, depending on preference */
}

.disclaimer {
  font-size: 16px; /* Smaller than intro */
  text-align: left;
}

body {
  cursor: url('https://riddleonhermind.neocities.org/Images_1/Cursor%20test.png'), auto;
}

