/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
  cursor: url("gun.gif"), auto;
  margin: 0;
}

h1 {
  text-align: center;
  text-shadow: 2px 2px 5px #ffbb99;
  border-style: dotted;
  margin: 25px 250px;
}

.navigation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  padding: 0 0 0 0;
  list-style: none;
  gap: 50px;
  flex: 1 1 0;
  min-width: 0;
}

.navigation a {
  text-decoration: none;
  display: flex;
  padding: 20px;
  margin: 10px;
  flex: 1 1 0;
  min-width: 0;
}

.navigation a:link {
  background-color: #ffe6cc
}

.navigation a:hover {
  background: #8a8a5c;
}

p {
  text-align: center;
  margin: auto;
  width: 40%;
  padding: 10px;
}

a:link {
  color: #cc6600;
  text-decoration: none;
}

a:visited {
  color: #800000;
  text-decoration: none;
}

a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

a:active {
  color: #ffcc66;
  text-decoration: underline;
}

ul {
  text-align: center;
  list-style-position: inside;
  padding: 0 0 0 0;
}

.leech-pic {
  display: block;
  margin: auto;
  text-align: center;
}

.fire-border {
  display: flex;
  margin: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.button-intro {
  margin: auto;
  width: 100%;
  padding: 10px 0 10px 0;
}


.button-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.LLicon {
  display: block;
  margin: auto;
  text-align: center;
}

.siteintrotxt {
padding-top: 200px;
}

.siteintroclick {
  display: block;
  margin: auto;
  text-align: center;
  max-width: 500px;
  padding-bottom: 300px;
}

.simpletextfooter {
        position: fixed;
        bottom: 10px;
        right: 10px;
        font-size: 0.8em;
        color: #888;
        z-index: 1000;   /* Ensures the text appears above other content */
    }

/*CSS from utopian notebook utopianscrapbook.neocities.org*/

#gallerybox{
  display:grid;
  width:100%;
  gap:1em;
  grid-template-columns:repeat(3, 1fr);
}

#gallerybox a{
  color:var(--text-color);
  opacity:1;
  transition:0.5s all;
  display:grid;
  gap:1em;
  align-items:flex-start;
}

#gallerybox a:hover{
  opacity:0.75;
}

.item-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.item-image{
  line-height:0;
  aspect-ratio:1/1;
}

.item-title{
  text-align:center;
  font-size:0.9rem;
}

@media (max-width:700px){
  #gallerybox{
  grid-template-columns:repeat(2, 1fr);
  }
  
  .page-divider{
  display:block;
  }
  
  #page .caption, #page-flipped .caption{
    text-align:center;
  }
  
  #page, #page-flipped, #page-about, #page-project, #three-column, #two-column{
    grid-template-columns:1fr;
  }
}
