body{
  position: relative;
  background-color: black;
  color: white;
  font-family: cursive;
         color: white; /* Text color */
  text-shadow: 
    2px 1px 0 black, 
    -2px 1px 0 black, 
    -2px -1px 0 black, 
    2px -2px 0 black; /* Creates a shadow effect that looks like an outline */
    font-size: 150%;
} body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(https://roseythorns.neocities.org/undying-gothic-love-stockcake.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}