.prints .intro {
  text-align: center;
  font-size: 20px;
}
.prints .prints-grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prints .prints-grid .prints-item {
  min-width: 0;
}
.prints .prints-grid img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .prints .prints-grid {
    grid-template-columns: 1fr;
  }
}
.prints .print-description {
  text-align: center;
  margin-top: 0;
}
.prints .print-price {
  margin-top: 0;
}

@font-face {
  font-family: "Athiti";
  src: url("../fonts/athiti/Athiti-ExtraLight.cc36dcb676db.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Athiti";
  src: url("../fonts/athiti/Athiti-Light.cf0047ded20a.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Athiti";
  src: url("../fonts/athiti/Athiti-Regular.216ff14307da.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Athiti";
  src: url("../fonts/athiti/Athiti-Medium.b1a9fcda09e3.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Athiti";
  src: url("../fonts/athiti/Athiti-SemiBold.686680ae99af.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Athiti";
  src: url("../fonts/athiti/Athiti-Bold.35ba790f3b03.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-family: "Athiti", sans-serif;
}

body {
  min-height: 100vh;
  max-width: 2000px;
  margin: 0 auto;
  padding: 40px clamp(20px, 8vw, 80px);
  display: grid;
  color: #444;
  gap: 3vw;
  grid-template-rows: min-content 1fr min-content;
}

a {
  text-decoration: none;
  color: currentColor;
}

h1,
h2,
h3,
h4 {
  font-weight: lighter;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

footer .icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
footer p {
  display: flex;
  align-items: center;
  gap: 16px;
}

header {
  display: flex;
}
header h1 {
  display: inline-block;
  margin-right: 30px;
}
header nav {
  display: flex;
  align-items: center;
}
header nav:hover a {
  opacity: 0.5;
}
header nav a {
  transition: opacity 1s;
  margin: 20px;
}
header nav a:hover {
  opacity: 1;
}

p {
  text-align: center;
}

.richtext-image {
  margin: auto;
}
