/* 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;
  color: white;
  text-shadow: 0px 0px 15px black;
}

h3 {
  font-family: "stencil-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-shadow: 0px 0px 15px black;
}

.list-header{
  font-family: "stencil-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-shadow: 0px 0px 15px black;
  
}

p {
  font-family: "stencil-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-shadow: 0px 0px 15px black;

}

.hyperlink {
  color: cyan;
  text-decoration: underline;
  font-style: italic;
}

.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;
}

/*https://www.youtube.com/watch?v=3TN9J3pCn6k index responsive image grid */
/*css for more page is on the more html file*/
/*this is for index*/
.container {
  max-width: 1224px;
  width: 90%;
  margin: auto;
  padding: 40px 0;
}

.photo-gallery {
  display: flex;
  gap: 20px;
}

.announcement{
    color: cyan;
}

.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 */
}
