html, body {
  justify-content: center;
  font-family: sans-serif;
  margin: 0;
  align-items: center;
  padding: 2rem;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #ffffff;
  box-sizing: border-box;
  display: flex;
}

h1 {
  max-width: 100%;
  font-family: "Nanum Myeongjo", serif;
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  cursor: pointer;
  font-weight: 400;
  font-size: clamp(2.5rem, 10vw, 8rem);
  transition: color 0.3s ease;
  color: #a0a0a0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.header-icon {
  width: clamp(48px, 8vw, 96px);
  height: auto;
}

.image-tiles {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.image-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  gap: 1.5rem;
  width: 100%;
}

.image-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80px;
}

.tile-image {
  width: 48px;
  height: auto;
  margin-bottom: 0.8rem;
}

.tile-text {
  font-family: Atkinson Hyperlegible Next, sans-serif;
  font-size: 0.9rem;
  color: #a0a0a0;
}

.tile-text a {
  color: #a0a0a0;
  text-decoration: underline;
}

@media (min-width: 769px) {

  .image-row {
    gap: 3rem;
  }
  
  .image-tile {
    width: 100px;
  }
  
  .tile-image {
    width: 64px;
  }
  
  .tile-text {
    font-size: 1rem;
  }

}

@media (max-width: 600px) {

  .image-tiles {
    gap: 1rem;
  }
  
  .image-row {
    gap: 1rem;
  }
  
  .image-tile {
    width: 70px;
  }
  
  .tile-image {
    width: 40px;
  }

}

.eb-garamond-400 {
  font-family: EB Garamond, serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.nanum-myeongjo-regular {
  font-family: Nanum Myeongjo, serif;
  font-weight: 400;
  font-style: normal;
}

.atkinson-hyperlegible-next-200 {
  font-family: Atkinson Hyperlegible Next, sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}