body {
  background-color: rgb(255, 252, 240);
  color: #333;
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.dark body {
  background-color: rgb(16, 15, 15);
  color: #d1d5db;
}

.hand-icon {
  display: inline-block;
  font-size: 1.5rem;
  /* Adjust size as needed */
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.hand-icon:hover {
  animation: wave-animation 0.3s ease-in-out 3; /* Runs the animation twice */
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
a {
  position: relative;
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #3e5579;
}
a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #333;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
a:hover::before {
  transform: scaleX(1);
}
.dark a {
  color: #cbd5e1;
}
.dark a:hover {
  color: #3e5579;
}
.dark a::before {
  background-color: #cbd5e1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgb(255, 252, 240);
  color: #333;
}
.dark .site-header {
  background-color: rgb(16, 15, 15);
  color: #d1d5db;
}
.site-header .header-content {
  text-align: left;
}
.site-header .site-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0;
  color: #3e5579;
}
.site-header .site-subtitle {
  font-size: 0.85rem;
  margin: 0;
  color: #333;
}
.dark .site-header .site-subtitle {
  color: #d1d5db;
}
.site-header .button {
  background-color: background-color;
  cursor: pointer;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.site-nav button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #f1c40f;
}
.dark .site-nav button {
  color: #f1c40f;
}
.site-nav button i {
  font-size: 1rem;
}

.main-content {
  max-width: 50%;
  margin: 2rem auto;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .main-content {
    max-width: 90%;
  }
}

.site-footer {
  text-align: center;
  padding: 1rem;
  background-color: rgb(255, 252, 240);
  color: #333;
}
.dark .site-footer {
  background-color: rgb(16, 15, 15);
  color: #d1d5db;
}

.index-main {
  margin-top: 2rem;
  text-align: center;
}
.index-main .intro-text {
  text-align: left;
}
.index-main .intro-text a {
  font-weight: bold;
}
.dark .index-main {
  color: #d1d5db;
}
.index-main .article-summary {
  margin-bottom: 0;
  padding-bottom: 0;
}
.dark .index-main .article-summary {
  border-color: rgba(255, 255, 255, 0.1);
}
.index-main .article-summary .article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0.5rem 0;
}
.index-main .article-summary .article-header .article-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 768px) {
  .index-main .article-summary .article-header .article-title {
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .index-main .article-summary .article-header .article-title {
    font-size: 0.85rem;
  }
}
.index-main .article-summary .article-header .article-date {
  color: rgb(127.5, 127.5, 127.5);
  font-size: 0.85rem;
}
.dark .index-main .article-summary .article-header .article-date {
  color: hsl(216, 12.1951219512%, 123.9215686275%);
}
.index-main .article-summary .article-tags {
  text-align: left;
  font-size: 0.85rem;
  margin: 0;
  color: #666666;
}

.article-container {
  width: 100%;
  margin: 0rem auto;
  padding: 1rem;
}
@media (max-width: 768px) {
  .article-container {
    max-width: 90%;
  }
}
.article-container .article-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0rem auto;
}
.dark .article-container .article-title {
  color: #d1d5db;
}
.article-container .article-meta {
  display: flex;
  justify-content: space-between;
  color: #666666;
}
.dark .article-container .article-meta {
  color: hsl(216, 12.1951219512%, 103.9215686275%);
}
.article-container .article-meta .article-date {
  font-size: 0.85rem;
  margin: 0rem;
  display: flex;
  align-items: center;
}
.article-container .article-meta .article-tags {
  font-size: 0.85rem;
  margin: 0rem;
  display: flex;
  align-items: center;
  color: #666666;
}
.article-container .article-content {
  font-size: 1rem;
  line-height: 1.75;
  text-align: justify;
  margin-top: 1.5rem;
  color: #333;
}
.dark .article-container .article-content {
  color: #d1d5db;
}
.article-container .article-content a {
  text-decoration: underline;
}
.article-container img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.article-container .article-reply {
  text-align: right;
  text-decoration: underline;
}

.microblog-main .microblog-divider {
  border: 0;
  height: 1px;
  width: 50%;
  background: #333;
  margin: 1rem auto;
}
.dark .microblog-main .microblog-divider {
  background: #d1d5db;
}

.page-container {
  max-width: 64rem;
  margin: 2rem auto;
  padding: 1rem;
}
.page-container .page-content {
  padding-left: 1rem;
}
.page-container .page-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}
.dark .page-container .page-title {
  color: #d1d5db;
}
.page-container .page-date {
  color: #666666;
}
.dark .page-container .page-date {
  color: hsl(216, 12.1951219512%, 103.9215686275%);
}
.page-container .page-body.minimal {
  text-align: center;
  font-size: 1.75rem;
}
.page-container .page-body {
  font-size: 1.125rem;
  line-height: 1.75;
  text-align: justify;
  margin-top: 1.5rem;
  color: #333;
}
.dark .page-container .page-body {
  color: #d1d5db;
}
.page-container .page-body p + p {
  margin-top: 1.5rem;
}

.tags-main {
  margin-top: 2rem;
  text-align: center;
}

.tags-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}
.dark .tags-title {
  color: #d1d5db;
}

.tag-link {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  margin: 0.5rem 0;
  display: inline-block;
}
.tag-link:hover {
  color: #fff;
}
.dark .tag-link {
  color: #d1d5db;
}
.dark .tag-link:hover {
  color: #fff;
}

.custom-slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
}

.slider-legend {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0px;
  text-align: center;
}

.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 200px;
  height: 30px;
  background: #E6E4D9;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}
.custom-slider::-webkit-slider-runnable-track {
  background: #E6E4D9;
  height: 30px;
  border-radius: 10px;
}
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #343331;
  border: 2px solid #000;
  border-radius: 50%;
  cursor: pointer;
}
.custom-slider::-moz-range-track {
  background: #E6E4D9;
  height: 30px;
  border-radius: 10px;
}
.custom-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #343331;
  border: 2px solid #000;
  border-radius: 50%;
  cursor: pointer;
}
.custom-slider::-ms-track {
  background: transparent;
  border-color: transparent;
  color: transparent;
  width: 100%;
  height: 30px;
}
.custom-slider::-ms-thumb {
  width: 20px;
  height: 20px;
  background: #343331;
  border: 2px solid #000;
  border-radius: 50%;
  cursor: pointer;
}
.custom-slider::-ms-fill-lower {
  background: #E6E4D9;
  border-radius: 10px;
}
.custom-slider::-ms-fill-upper {
  background: #E6E4D9;
  border-radius: 10px;
}

.slider-tooltip {
  visibility: hidden;
}

.slider-tooltip::after {
  content: "";
}

code {
  font-family: "Consolas", "Monaco", "Courier New", monospace;
  font-size: 0.9em;
  background-color: rgb(255, 246.9, 214.5);
  color: #333;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  border: 1px solid rgb(255, 241.8, 189);
}
.dark code {
  background-color: rgb(42.3225806452, 39.6774193548, 39.6774193548);
  color: #d1d5db;
  border-color: rgb(55.4838709677, 52.0161290323, 52.0161290323);
}

pre {
  background-color: rgb(255, 248.94, 224.7);
  border: 1px solid rgb(255, 243.84, 199.2);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
  overflow-x: auto;
  font-family: "Consolas", "Monaco", "Courier New", monospace;
  font-size: 0.9em;
  line-height: 1.5;
  color: #333;
}
.dark pre {
  background-color: rgb(37.0580645161, 34.7419354839, 34.7419354839);
  border-color: rgb(47.5870967742, 44.6129032258, 44.6129032258);
  color: #d1d5db;
}
pre code {
  background-color: transparent;
  border: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
  border-radius: 0;
}
.dark pre code {
  background-color: transparent;
  border: none;
  color: inherit;
}

/*# sourceMappingURL=base.css.map */
