@font-face {
  font-family: magica;
  src: url("https://dl.dropbox.com/s/t654pb18rsg6ywa/theheart.ttf");
}

body {
  background-color: #ffffff;
}

p {
  font-family: magica;
  font-size: 3.2vh;
  color: #17111a;
  padding: 1%;
}

h1 {
  text-align: center;
  font-size: 4vh;
  -webkit-text-fill-color: #17111a;
  -webkit-text-stroke: 1px black;
}

h2 {
  text-align: center;
  font-size: 3.8vh;
  -webkit-text-fill-color: #947F8B;
  -webkit-text-stroke: 1px black;
}

/* layout */
.post-container {
  width: 55%;
  margin: 3% auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 10px;
}

.post-nav {
  border: 4px ridge #FEBFDE;
  border-radius: 10px;
  background-image: url("https://files.catbox.moe/p6m00b.gif");
  padding: 10px;
  text-align: center;
}

.post-main {
  border: 4px ridge #FEBFDE;
  border-radius: 10px;
  background-image: url("https://i.postimg.cc/Bb0MMcrm/boxbg-002.png");
  padding: 10px;
}

.link {
  box-shadow: -1px -1.4px 1px inset #bdbdbd, 0px 0px 2px #bdbdbd;
  background-image: linear-gradient(#fcf8e5, #fce3ef);
  letter-spacing: 2px;
  margin: 5px 0;
  padding: 5px;
}

a {
  text-decoration: none;
  color: #f585bd;
}

a:visited {
  color: #f585bd;
}

/* mobile */
@media screen and (max-width: 550px) {
  .post-container {
    width: 95%;
    grid-template-columns: 1fr;
  }
}

/* MAIN CONTENT */
.gallery-main {
  border: 4px ridge #FEBFDE;
  border-radius: 10px;
  background-image: url("https://i.postimg.cc/Bb0MMcrm/boxbg-002.png");
  padding: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}
.gallery-grid img {
  width: 100%;
  border: 4px ridge #FEBFDE;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* mobile */
@media screen and (max-width: 550px) {
  .gallery-container {
    width: 95%;
    grid-template-columns: 1fr;
  }

  .gallery-nav {
    order: -1; /* menu goes on top on mobile */
  }
}