/* a minimalist set of CSS resets */

/* default to border-box */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
} 

h1 {
  font-family: "stencil-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-shadow:0px 0px 5px white;
}

h3{
   font-family: "stencil-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-shadow:0px 0px 5px white;
}

p {
  font-family: "stencil-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-shadow:0px 0px 5px white;
}



.art-dimensions{
  text-align: left;
  font-size: 23px;
}

/* adjust typography defaults */
body {
  background-image: url("https://cdn.glitch.global/de61945b-a608-4515-8a75-27fe521c9ecd/websiteBackground_10.png?v=1738674805580");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover; /*THIS IS WHAT SAVES THE BACKGROUND 
  IT IS MY GOD */
  
  margin: 1rem;
  font-family: sans-serif;
  line-height: 1.5;
  font-size: 30px;
  text-align: center;
}

/* images and videos max out at full width */
img,
video {
  height: auto;
  max-width: 100%;
}

ul {
  list-style-type: none;
  margin: 0;
  position: fixed;
  padding: 0;
  text-shadow: 0px 0px 5px white;
}

/*https://www.youtube.com/watch?v=3TN9J3pCn6k index responsive image grid */

.container {
  margin: auto;
  padding: 40px 0;
}

.photo-gallery {
  display:flex;
  gap: 20px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 400px;
}



@media (max-width: 768px) {
  .photo-gallery {
    flex-direction: column;
  }
  /* end of index responsive image grid */
}
