/* === CURSOR === */
* {
  cursor: url(https://cur.cursors-4u.net/cursors/cur-3/cur242.ani), 
          url(https://cur.cursors-4u.net/cursors/cur-3/cur242.png), auto !important;
}

/* === BACKGROUND === */
html {
  background: rgb(255, 255, 255);
  background-image: url("Page6.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode:difference;
}

/* === BASE === */
body {
  color: black;
  font-family:Helvetica, sans-serif;
  font-size: 2rem;
  text-transform:uppercase;
  margin: 0;
  padding: 0;
}


/* === FOUR CORNER ANIMATED DECALS === */
/* === FOUR CORNER ANIMATED DECALS === */
body::before, body::after,
body::before.bottom-left, body::after.bottom-right {
  content: "";
  position: fixed;
  width: 75px;
  height: 75px;
  background: url("Prinkcross.gif") no-repeat;
  background-size: contain;
  z-index: 100;
  pointer-events: none;
}

/* Top-Left */
body::before {
  top: 5px;
  left: 5px;
}

/* Top-Right */
body::after {
  top: 5px;
  right: 5px;
}

/* Bottom-Left */
body::before.bottom-left {
  bottom: 5px;
  left: 5px;
}

/* Bottom-Right */
body::after.bottom-right {
  bottom: 5px;
  right: 5px;
}

h1 {
  font-family: serif;
  background-color: pink;
  max-width: fit-content;
}


.parent {
    display: flex;
    justify-content: center;
    margin: 100px;
    gap: 200px;
}
    
.div1 {
    flex-direction: column;
}



.stuff {
    color: rgb(255, 255, 255);
    text-align: center;
    background-color: rgb(0, 0, 0);
    position: inherit;
    background-size: contain;
}

.link-box-container {
  padding: 10px;
  background-color: pink;
  flex-direction: column;
  justify-items: center;
  display: flex;
  max-width: fit-content;
}

.link-box {
  background-color: white;
  margin: 10px auto;      
  padding: 10px;
  text-align: center;     
  display: inline-block;  
  max-width: fit-content;
}


.body-parent {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.content-container {
    background-color: rgba(255, 192, 203, 0.425);
    display: inline-block;
    margin: 0 auto;
}

.text-box2 {
    background-color: white;
    background-size: auto;
    padding: 15px;
    text-align: center;
    margin: 10px;
    max-width: fit-content;
}



.graphics-box {
    position: relative; /* enables ::before to be positioned within */
    padding: 0px;
    display: inline-block;
    background-color: transparent;
}

.graphics-box::before {
    content: ""; /* ← absolutely required */
    position: absolute;
    background-color: rgb(255, 255, 255);
    filter: blur(60px);
    opacity: 50%;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; /* sends it behind the real content */
    border-radius: 20px;
}




/*

#prayer-box {
  width: auto;
  height: auto;
  padding: 20px;
  margin: 20px auto;
  overflow-y: scroll;
  border-top: 10px double #39d7fd;
  border-right: 10px double #39d7fd;
  border-bottom: 10px double #39d7fd;
  border-left: 10px double #39d7fd;
  background: #ffffff;
}
*/

