:root {
  background-color: #201c18;
}
body {
  color: rgba(237, 219, 208, 0.8);
  font-family: "Cormorant Garamond Italic", "Cormorant Garamond", serif;
  font-size: 1.5em;
  user-select: none;
  margin: 0;
  padding-block: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
* {
  transition: all 0.2s;
}
.text-secondary {
  color: rgba(236, 206, 187, 0.3);
}
.quotation::before {
  content: '“';
}
.quotation::after {
  content: '„';
}
input,
button {
  color: rgba(237, 219, 208, 0.8);
  background-color: transparent;
  border-width: 1px;
  border-radius: 5px;
  border-style: solid;
  border-color: rgba(236, 206, 187, 0.1);
  padding: 0.5em;
}
input::placeholder {
  color: rgba(236, 206, 187, 0.3);
}
a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: rgba(236, 206, 187, 0.5);
}
a:active {
  color: white;
}
a:visited {
  color: rgba(236, 206, 187, 0.5);
}
#search #search-reset {
  padding-inline: 0.75em;
}
#search:has(#search-bar:placeholder-shown) #search-reset {
  display: none;
}
#skills-list ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#skills-list li {
  cursor: grab;
  display: inherit;
  flex-direction: inherit;
  align-items: inherit;
}
#skills-list li.hidden {
  display: none;
}
#skills-list li span {
  color: rgba(236, 206, 187, 0.3);
}
#skills-list:has(li:hover) li:not(:hover) {
  color: rgba(236, 206, 187, 0.3);
}
#skills-list li:hover span {
  color: rgba(237, 219, 208, 0.8);
}
/*# sourceMappingURL=skills.css.map */