/* === 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: pink;
  background-image: url("writing_background.GIF");
  background-repeat: repeat;
  background-position: center;
  background-size: auto;
  background-blend-mode:difference;
}

/* === BASE === */
body {
  color: black;
  font-family: 'Helvetica', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  display: block; /* Remove flex stuff from earlier */
  text-align: center; 
}


/* === 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: transparent;
}

.head_container {
    background-color: pink;
    max-width: fit-content;
    margin: 0 auto;
}


.parent {
    display: flex;
    justify-content: center;
    margin: 100px;
    gap: 200px;
}
    
.div1 {
    flex-direction: column;
    justify-self: center;
}

.link-box-container {
  padding: 10px;
  background-color: pink;
  flex-direction: column;
  justify-items: center;
  max-width: fit-content;
}


.stuff {
    color: rgb(255, 255, 255);
    text-align: center;
    background-color: rgb(0, 0, 0);
    position: inherit;
    background-size: contain;
}

.link-box {
    background-color: white;
    margin: 10px;
    max-width: fit-content;
    justify-content: center;
    align-content: center;
    max-height: auto;
    align-self: center;
}

.body-parent {
    flex-direction: column;
    justify-self: center;
    justify-content: center;
}

.text-box2 {
    background-color: white;
    background-size:auto;
    opacity: 100%;
    padding: 15px;
    text-align: center;
    margin: 10px;
}

.content-container {
  background-color: rgba(255, 192, 203, 0.425);
  background-size: auto;
}

#txt_file {
  background-color: white;
  padding: 15px 25px;
  display: inline-block;        /* box fits the text */
  text-align: center;           /* center text inside */
  margin: 50px auto;            /* center horizontally with margin */
  white-space: pre-wrap;        /* respects line breaks */
  font-size: 1.5rem;
  max-width: 90vw;              /* prevents box from blowing out */
}

/*

#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;
}
*/

