@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;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Delius Swash Caps';
}
body {
  background-color: #F2F2F2;
  color: #000000;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', system-ui;
}
.container {
  max-width: 650px;
  text-align: center;
  margin: auto;
  padding: 1rem;
}

.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 */
}

strong a {
  color: #000000;
}

#photo img {
  max-height: 800px;
}
