/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html>
head>
link rel="icon" type="image" href="https://ruenarchivist.neocities.org/favicon.png">
style>
body> {cursor: url("https://ruenarchivist.neocities.org/cursor.png") , auto;
}

h1 {
 
  color: white;
}

div {
 
  color: white;
}


@font-face {
font-family: "VINQUE";
  src:url(https://ruenarchivist.neocities.org/vinque.regular.otf) format("truetype");
}
h1 {
font-family: "VINQUE";
  text-align: center;

}

.image-container {
  position: relative; /* Establish a positioning context */
  width: 500px; /* Or any desired width */
  height: 300px; /* Or any desired height */
}

.wizzo {
  position: relative;
  left: 1000;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* Place behind the overlay image */

}

.overlay-image {
  position: absolute;
  top: 400px; /* Adjust as needed */
  left: 800px; /* Adjust as needed */
  z-index: 1; /* Place on top of the background image */
  width: 10%; /* Or any desired width */
  height: 30%; /* Or any desired height */
}


