/* Thumbnail */
.thumbnail-container {
  width: 100%;
  height: 85vh;
  display: grid;
  place-items: center;
}
.thumbnail-title {
  font-size: 64px;
  line-height: 64px;
}
.thumbnail-subtitle {
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
}
.thumbnail-selectorBox {
  margin-block-start: 32px;
  margin-block-end: 8px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.thumbnail-selector {
  font-size: 24px;
  font-weight: 600;
  color: black;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.thumbnail-selector:hover {
  background-color: black;
  color: white;
  transition: 0.3s;
}

/* Contents */
.contents-container {
  width: 700px;
  max-width: 100%;
  margin-inline: auto;
  margin-block-start: 64px;
  padding: 16px;
}
.contents-work {
  margin-block-start: 64px;
}
.contents-image {
  width: 100%;
  max-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.contents-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Utils */
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px;
  padding-inline: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: #eeeeee;
  font-size: 0.8rem;
}/*# sourceMappingURL=style.css.map */