/*  resources
- https://www.geeksforgeeks.org/css/css-units-em-rem-px-vh-vw/
- 
- 
*/

.body1 {
  width: 90%; /* 90% of the viewport width */
  margin: 0 auto; /* Centers the body element horizontally */
  min-height: 100vh; /* Ensures body fills at least the viewport height */
  font-size: 1rem; /* Sets a base font size relative to the root element */
  background-color: #ffc7db; /* Example background color */
  color: #9686bf; /* Text */
  font-family: Arial;
  }
  
/* Container stuff */

.sidestack{
  display: flex;
        /* Optional: Add spacing between items */
        gap: 20px; 
        justify-content: center; /* Centers horizontally */
  }
.column2_75{
  display: grid;
  grid-template-columns: 75% 25%; /* Creates three equal-width columns */
      border-width:10px;
      border-style:solid;
      border-image: url("/images/cloud.png") 90 fill round;
}
.column3{
  column-count: 3; /* Divides content into 3 columns */
  column-gap: 20px; /* Adds a gap between columns */
  /*column-rule: 1px solid #fff;  Adds a rule (line) between columns */
      border-width:10px;
      border-style:solid;
      border-image: url("/images/cloud.png") 90 fill round;
}

.scrolly{ /* This is the scrollable container */
  overflow:hidden;
  overflow-y:scroll;
  height:25vh;
  max-width:75vh;
  /* padding: 20px 20px; */
  width: 100%;
  margin: 25 auto;
  color: #9686bf;
  border: 1px solid #9686bf;
  border-radius: 10px;

  background-image: url('bg1.png');  /* Specify the image path */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-position: center; /* Centers the image */
  background-size: cover; /* Scales the image to cover the entire div */
  }
  
  /* Images */
  

  
/* This is the scrollbar */

  ::-webkit-scrollbar { 
  width: 14px;
  }
  ::-webkit-scrollbar-track {
  background-color: #a597c2;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  border: 1px solid #b2a5d4 ;
  }
  ::-webkit-scrollbar-thumb {
  -webkit-border-radius: 12px;
  border-radius: 12px;
  background: #dad3ed;
  border: 1px solid #aaa;
  }
  
  
.wrapper { /* idk */
 overflow: hidden; 
}
  
  /* from scripted.neocities.org */
  .cloudy {
      border-width:7px;
      border-style:solid;
      border-image: url("/images/cloud.png") 90 fill round;
      }
  .rainbow {

      /* Rainbow Border 
      
      */
    border: 15px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to bottom right, 
    #ff0000 8%, #ff8000 16%, #ffff00 24%, #80ff00 32%, #00ff00 40%, #00ff80 48%, #00ffff 56%, #0080ff 64%, #0000ff 72%, #8000ff 80%, #ff00ff 88%, #ff0080 98%);
    height: 75vh;
    }
  
    /* Edit freely below */   
    
  .div_bg1 {
    width: 100%; /* Or a specific width */
    height: 100%; /* Or a specific height */
    background-image: url('bg1.png'); /* Specify the image path */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image */
    background-size: cover; /* Scales the image to cover the entire div */
    }
    
/* Text */

  .p1 {
      line-height: 150%; /* Sets line height to 1.5 times the font size */
      padding: 5px;
      break-inside: avoid-column;
    }

    /* with purple background */
  .p2 {
    color: #f9f5fc;
    background-color: rgba(156, 120, 222, 0.5);
    background-image: url('');
    border-radius: 10px;
    }

    /* Highlight */
    
  ::selection {
    background: #f7abb3;
    color: #ffffff;
    }
  
    /* Lists */
    
  ul {
    text-align: center;
    list-style-type: square;
    max-width: 50%;
    list-style-position: inside;
    text-indent: -5vh;
    }
  li::marker {
    color: #f7abb3;
    font-size: 1em;
    font-weight: bold;
    content: "♡ "; /* Using an emoji as a marker */
    }
  
    /* Link style */
    
  a:link {
    color: #9f86bf; /* Unvisited link */
    /*text-decoration: none; Remove underline */
  }
  a:visited {
    color: #9f86bf; /* Visited link */
  }
  a:hover {
    color: #f7abb3; /* Mouse over link */
    text-decoration: underline; /* Add underline on hover */
  }
  a:active {
    color: yellow; /* Selected link (while being clicked) */
  }
  


      