/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* SETTINGS */
:root {
  /* Background Colors: */
  --background-color: #ffffff;
  --content-background-color: #fbedf9;
  --sidebar-background-color: #fae1f7;

  /* Text Colors: */
  --text-color: #b685ff;
  --sidebar-text-color: #a143f4;
  --link-color: #fc71fe;
  --link-color-hover: #f07be6;

  /* Other Settings: */
  
  --heading-font: rainyhearts, rainyhearts;
  --font-size: 22px;
  --margin: 16px;
  --padding: 28px;
  --border: 7px solid #f4abee;
  --round-borders: 0px;
  --sidebar-width: 200px;
  --border: 7px ridge #f4abee;

}

/* -------------------------------------------------------- */
/* BASICS */

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--background-color);
  background-image: url("https://web.archive.org/web/20091019180034if_/http://es.geocities.com/andraiaketrum/trastos/fondo_purplestars.gif");
  
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: var(--margin);
  color: var(--text-color);
  font-family: 'rainyhearts';
  line-height: 1.2;
  cursor: url('https://i.ibb.co/Y438MPCr/Untitled201-20250213001203-1.png') 16 16, auto;

}









a:hover {
  cursor: url('https://i.ibb.co/nMFyN890/Untitled201-20250213003539.png') 16 16, auto;
  color: var(--link-color-hover);
  text-decoration: none;
}

/* Apply to images in sidebar section and about-me section */
.sidebar-section img, .about-me-section img {
  transition: transform 0.3s ease-in-out; /* Smooth transition for scaling */
}

.sidebar-section img:hover, .about-me-section img:hover {
  transform: scale(1.05); /* Slightly scale the image when hovered */
}

.bible-verse-container {
  background: none; /* No background */
  padding: 10px;
 
  margin: var(--margin); /* Add margin for consistent spacing */
  border: 7px ridge #f4abee; /* Add a matching border */
  border-radius: var(--round-borders); /* Ensure rounded corners */
  color: var(--text-color); /* Use consistent text color */
  font-family: var(--font); /* Use the same font style */
  line-height: 1.5; /* Match line-height */
}

.bible-verse-container iframe {
  width: 100%;
  height: 450px; /* Match the height of the iframe */
  border: none; /* No border */
  display: block; /* Ensure it takes up full container width */
  background: none; /* No background for the iframe itself */
}



.pixi-trail {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: yellow;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  pointer-events: none;
  animation: fall-animation 1s linear forwards, fade-out 1s ease-out forwards;
  opacity: 1;
}

@keyframes fall-animation {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(var(--x), var(--y)); /* Moves to random position */
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}









::-moz-selection {
  background: rgba(0, 0, 0, 0.2);
}

::selection {
  background: rgba(0, 0, 0, 0.2);
}

a {
  text-decoration: underline;
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
}

/* -------------------------------------------------------- */
/* LAYOUT */

.layout {
  display: -ms-grid;
  display: grid;
  grid-gap: var(--margin);
  width: 1000px;
  -ms-grid-rows: auto var(--margin) auto var(--margin) auto;
  -ms-grid-columns: var(--sidebar-width) var(--margin) auto var(--margin) var(--sidebar-width);
      grid-template: "header header header" auto "leftSidebar main rightSidebar" auto "footer footer footer" auto / var(--sidebar-width) auto var(--sidebar-width);
}

header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: header;
  font-size: 1.2em;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  background: var(--content-background-color);
   background-image: url('https://s3.gifyu.com/images/b2B0P.gif');
}

.header-content {
  padding: var(--padding);
   background-image: url('https://s3.gifyu.com/images/b2B0P.gif'); /* Replace with the actual URL */
  background-repeat: repeat;
  background-size: auto;
  padding: 20px; /* Optional: Adjust for better readability */
}

.header-title {
  font-family: var(--heading-font);
  font-size: 1.5em;
  font-weight: bold;
}

.header-image img {
  width: 100%;
  height: auto;
   border-bottom: 7px ridge #f4abee; /* Apply ridge border only to the bottom */
  border-top: none; /* Ensure no borders are applied elsewhere */
  border-left: none;
  border-right: none;
}


.header-image {
  position: relative;
  width: 100%; /* Ensure the image spans the full width */
  display: block;
}

.header-image::after {
  content: "";
  position: absolute;
  bottom: 1px; /* Position it just over the ridge border */
  left: 0;
  width: 100%;
  height: 20px; /* Adjust the height of the hearts */
  background-image: url("https://web.archive.org/web/20091021235805if_/http://www.geocities.com/paigeblueeyes2003/purplepinkheartsani.gif");
  background-repeat: repeat-x;
  background-size: auto;
  pointer-events: none; /* Avoid interaction issues */
}






aside {
  grid-area: aside;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  background: var(--sidebar-background-color);
  padding: var(--padding);
  color: var(--sidebar-text-color);
}

.left-sidebar {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: leftSidebar;
   background-image: url('https://s3.gifyu.com/images/b2B0P.gif');
  background-repeat: repeat;
  background-size: auto; /* Adjust based on your preference (auto, cover, etc.) */
  
}

.right-sidebar {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  grid-area: rightSidebar;
   background-image: url('https://s3.gifyu.com/images/b2B0P.gif');
  background-repeat: repeat;
  background-size: auto; /* Adjust based on your preference (auto, cover, etc.) */
}

.sidebar-title {
  font-weight: bold;
  font-size: 1.2em;
  font-family: var(--heading-font);
}

.sidebar-section:not(:last-child) {
  margin-bottom: 3em;
}

.sidebar-section ul,
.sidebar-section ol {
  padding-left: 1.5em;
}

.sidebar-section > *:not(p):not(ul):not(ol):not(blockquote) {
  margin-top: 10px;
}

.sidebar-section blockquote {
  background: #fdeffb;
  padding: 15px;
  margin: 1em 0;
  border-radius: 0px;
  overflow: hidden;
   border: 7px ridge #f4abee
}

.sidebar-section blockquote > *:first-child {
  margin-top: 0;
}

.sidebar-section blockquote > *:last-child {
  margin-bottom: 0;
}

.site-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-button textarea {
  font-family: monospace;
  font-size: 0.7em;
}

main {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: main;
  overflow-y: auto;
  padding: var(--padding);
  background: var(--content-background-color);
  border: var(--border);
  border-radius: var(--round-borders);
  background-image: url('https://s3.gifyu.com/images/b2BCZ.gif');
  background-repeat: repeat;
  background-size: auto; /* Adjust based on your preference (auto, cover, etc.) */
}

footer {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: footer;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  font-size: 0.75em;
  padding: 15px;
  background: var(--content-background-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  
}

footer a,
footer a:visited {
  color: var(--link-color);
}

footer a:hover,
footer a:focus {
  color: var(--link-color-hover);
}

/* -------------------------------------------------------- */
/* NAVIGATION */

nav {
  margin-bottom: 3em;
}

nav .sidebar-title {
  margin-bottom: 0.5em;
}

nav ul {
  margin: 0 -5px;
  padding: 0;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

nav ul li {
  margin-bottom: 0;
}

nav ul li > a {
  display: inline-block;
}

nav ul li > a,
nav ul li summary {
  padding: 5px 10px;
}

nav ul li > a.active,
nav ul li summary.active {
  font-weight: bold;
}

nav ul summary {
  cursor: pointer;
}

/* (submenu) */
nav ul ul li > a {
  padding-left: 30px;
}

header nav {
  margin-bottom: 0;
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}

header nav ul li:first-child > a {
  padding-left: 0;
}

header nav ul li:last-child > a {
  padding-right: 0;
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  -webkit-transform: translateY(-3rem);
      -ms-transform: translateY(-3rem);
          transform: translateY(-3rem);
  -webkit-transition: -webkit-transform 0.1s ease-in;
  transition: -webkit-transform 0.1s ease-in;
  -o-transition: transform 0.1s ease-in;
  transition: transform 0.1s ease-in;
  transition: transform 0.1s ease-in, -webkit-transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* -------------------------------------------------------- */
/* CONTENT */

main {
  line-height: 1.5;
}

main a,
main a:visited {
  color: var(--link-color);
}

main a:hover,
main a:focus {
  color: var(--link-color-hover);
  -webkit-text-decoration-style: wavy;
          text-decoration-style: wavy;
}

main p,
main .image,
main .full-width-image,
main .two-columns {
  margin: 0.75em 0;
}

main ol,
main ul {
  margin: 0.5em 0;
  padding-left: 1.5em;
}

main ol li,
main ul li {
  margin-bottom: 0.2em;
  line-height: 1.3;
}

main ol {
  padding-left: 2em;
}

main blockquote {
  background: #fdeffb;
  padding: 15px;
  margin: 1em 0;
  border-radius: 0px;
   border: 7px ridge #f4abee
}

blockquote2 {
  background: #F7CEF3;
  padding: 9px;
  margin: 1em 0;
  border-radius: 0px;
   border: 7px ridge #f4abee
}

main pre {
  margin: 1em 0 1.5em;
}

main code {
  text-transform: none;
}

main center {
  margin: 1em 0;
  padding: 0 1em;
}

main hr {
  border: 0;
  border-top: 2px dotted green;
  margin: 1.5em 0;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--heading-font);
  margin-bottom: 0;
  line-height: 1.5;
}

main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}

main h1 {
  font-size: 1.5em;
}

main h2 {
  font-size: 1.4em;
}

main h3 {
  font-size: 1.3em;
}

main h4 {
  font-size: 1.2em;
}

main h5 {
  font-size: 1.1em;
}

main h6 {
  font-size: 1em;
}

.two-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.two-columns > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  margin: 0;
}

.two-columns > *:first-child {
  padding-right: 0.75em;
}

.two-columns > *:last-child {
  padding-left: 0.75em;
}

/* -------------------------------------------------------- */
/*  CONTENT IMAGES */

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.images .image {
  margin: 0;
}

.images img {
  width: 50%;
  padding: 5px;
}

/* -------------------------------------------------------- */
/* 	MOBILE RESPONSIVE */

@media (max-width: 800px) {
  body {
    font-size: 14px;
    
  }

  .layout {
    width: 100%;
    -ms-grid-rows: auto var(--margin) auto var(--margin) auto;
    -ms-grid-columns: 1fr;
        grid-template: "header" auto  "main" auto "footer" auto / 1fr;
  }

  .left-sidebar { display: none; }
  .right-sidebar { display: none; }

  aside {
    border-bottom: 1px solid;
    padding: 9px;
    font-size: 0.9em;
  }
  


  nav {
    padding: 0;
  }

  nav > ul {
    padding-top: 0.5em;
  }

  nav > ul li > a,
  nav > ul li summary {
    padding: 0.5em;
  }

  main {
    max-height: none;
    padding: 15px;
  }

  .images {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .images img {
    width: 100%;
  }

  #skip-to-content-link {
    font-size: 1rem;
  }

  header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  main {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  footer {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  
nav img {
  position: relative;
  top: -20px; /* Moves the image up by 20px */
}

  
  
  
  
  
  
  
  
  /*MOBILE CHANGES*/
  
  
  
  /* Mobile responsive */
@media (max-width: 800px) {
  body {
    font-size: 14px;
  }

  .layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "main"
      "leftSidebar"
      "rightSidebar"
      "footer";
  }

  .left-sidebar,
  .right-sidebar,
  main {
    display: block;
    width: 100%;
    max-width: 1000px; /* Ensure max-width for consistency */
    margin: 0 auto; /* Center content */
    padding: 18px;
    font-size: 1.1em;
    box-sizing: border-box; /* Prevent overflow */
  }

  /* Fix horizontal scrolling on main content */
  main {
    overflow-x: hidden;  /* Prevent horizontal scrolling */
    width: 100%;
    box-sizing: border-box; /* Prevent any overflow */
  }

  /* Ensure images and text inside the main box fit the container */
  main img {
    max-width: 100%;  /* Prevent images from overflowing */
    height: auto;
  }

  main p, main h1, main h2, main h3, main h4, main h5, main h6 {
    word-wrap: break-word;  /* Make sure text wraps within the container */
  }

  #skip-to-content-link {
    font-size: 1rem;
  }

  header {
    grid-column: 1 / -1;
  }

  main {
    grid-column: 1 / -1;
  }

  footer {
    grid-column: 1 / -1;
  }
}

  
  
  header, aside, main, footer {
  border-style: ridge;
}

  

/* Update all layout references to website-container */
.website-container {
  position: relative;
  /* Add any other layout styles here */
}

.iframe-container {
  position: absolute;
  left: 0; /* Position it on the left side */
  top: 0; /* Adjust top positioning as needed */
  width: 100%;
  height: 450px; /* Match iframe height */
  z-index: 1; /* Ensure it is above other content if needed */
}

/* Optionally, adjust the layout of the left sidebar to make room for the iframe */
.website-container {
  padding-left: 100%; /* Adjust to make space for the iframe */
}


  .iframe-container iframe {
  width: 100%;
  height: 450px;
  border: none; /* This ensures no border is applied to the iframe */
}



  
  
}
