#topword {
  position: relative;
  padding-top: 60px;
  font-family: "Times New Roman", Times, serif;
  font-size: 0.65rem;
  font-weight: 300;
  text-align: center;
  font-style: italic;
  color: #888888;
  line-height: 1.2rem;
}
.emoji-word {
  font-family: "Comic Neue", sans-serif;
  margin: 0 6px;
  font-style: normal;
  font-weight: 800;
}

.works-main {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  width: 100%;
  margin-top: 80px;
  flex-direction: column;
}

.works-container {
  width: 65%;
}

.works-category {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.12rem;
}

.apps-row {
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 55px;
  gap: 30px;
}
.works-item {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 45%;
  height: 150px;
  min-width: 300px;
  border: var(--gray-200) 1px solid;
  border-radius: 10px;
  transition: all 0.3s linear;
  padding: 8px;
  cursor: pointer;
}

.works-item:hover {
  border-color: var(--gray-400);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.works-header,
.works-footer {
  display: inline-flex;
  justify-content: start;
  align-items: center;
  margin: 5px;
  gap: 5px;
}

.works-icon {
  width: 24px;
  height: 24px;
  background-color: var(--gray-200);
  margin-left: 2px;
  margin-right: 15px;
}

.works-name {
  font-size: 0.8rem;
  color: var(--gray-900);
  font-weight: 500;
}

.works-desc {
  font-size: 0.6rem;
  color: var(--gray-700);
  font-weight: 200;
  padding: 2px 6px;
  flex-grow: 1;
}

.works-sign {
  width: 12px;
  height: 12px;
  border: 1px var(--red-900) solid;
  border-radius: 6px;
}
.works-language,
.works-dot,
.last-update-time {
  font-size: 0.65rem;
  font-weight: 300;
}

.works-link {
  position: absolute;
  font-size: 0.8rem;
  right: 0;
  bottom: 0;
  margin: 0 12px 10px 0;
}
