@import url('https://fonts.googleapis.com/css2?family=Delius+Swash+Caps&family=Quicksand:wght@300..700&family=Yarndings+20&display=swap');

.censored {
  font-family: "Yarndings 20", system-ui;
}

body {
  background-color: #F2F2F2;
  color: #000000;
  padding: 0;
  padding-bottom: 1.5rem;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', system-ui;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Delius Swash Caps';
}

.container {
  padding: 0 1rem;
}

.art-container {
  max-width: 650px;
  text-align: center;
  margin: auto;
}

.art-container img {
  max-height: 500px;
  max-width: 500px;
  border: 1px solid black;
}

footer {
  text-align: center;
}
a {
  color: #000000;
}
footer a {
  color: #000000;
  font-weight: bold;
}
footer a:visited {
  color: #000000;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns of equal width */
  gap: 10px; /* spacing between items */
}
.grid-item {
  width: 100%;
  aspect-ratio: 1 / 1; /* keeps squares */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid gray;
}

.grid-item img {
  width: 80%;
  height: 80%;
  object-fit: cover; /* fill while maintaining aspect ratio */
  display: block;
  margin: auto;
  aspect-ratio: 1 / 1; /* keeps squares */
}

h3 {
  font-size: 1rem;
  background-color: black;
  color: white !important;
  width: fit-content;
  text-decoration: none;
  padding: 3px;
}

.flex-rows {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
}

.flex-rows > span > h2 {
  margin: 0;
}

.flex-rows > span {
  padding: .5rem 2rem;
  /* height: fit-content; */
  width: 285px;
  background-color: rgba(255, 255, 255, 0.75);

  border-image:  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAFaADAAQAAAABAAAAFQAAAAAIGxIOAAAAgUlEQVQ4Ee3UQQ6AIAxEUTHe/8qYj0Ai0C7ouLMLSERfa1NNxxO57ootgShBrHwqSqtGL06FdpAECvQFKtAJBL1YnFg+5NxfjjwUsIyHgZgJFT2dcv7o1JLwhU966o0UFZtj472OVekW1hKt0BAIPKJhcEQlICjftgwDJNoPQwmnG21aEh0ql5YKAAAAAElFTkSuQmCC') 7 /  7px / 0 round;
  border-width:  7px;
  border-style:  solid; 
}

.small-text {
  font-size: small;
}

hr {
  border: none;
  border-top: 1px solid black;
}

.bold {font-weight: bold;}
.italics {font-style: italic;}
.left {text-align: left;}

.mini-gallery {
  max-width: 100%;
}
.mini-gallery img {
  height: 175px;
  margin: 0.25rem;
}

.pixel img {
  border: none;
}
