/* 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." */
body {
  background-size: cover;
  background-image: url("images/Untitled_Artwork.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
}
.invisible-button {
  display: block;
  width: 100px; /* Adjust size */
  height: 50px; /* Adjust size */
  background-color: transparent; /* Makes the button background invisible */
  color: transparent; /* Makes text invisible */
  text-decoration: none; /* Removes underline */
  opacity: 0; /* Ensures complete invisibility */
  position: absolute; /* Position it over the target */
  /* Add top/left positioning here */
}
