* {
  box-sizing: border-box;
}

body {
  background: repeat url(../img/wallpapers/Fall\ Memories.jpg);
  box-sizing: border-box;
  margin: 0;
  padding: 2rem;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-window {
  max-width: 900px;
  width: 100%;
}

.toolbar {
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.button-column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-content: stretch;
}
.icon-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  font-size: 1.5rem;
  width: calc(50% - 1rem);
}
.icon-button img {
  height: 64px;
  image-rendering: pixelated;
}

.icon-button-sm {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.75rem;
  font-size: 1.5rem;
}
.icon-button-sm img {
  height: 32px;
  image-rendering: pixelated;
}

.character-header {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding-bottom: 2rem;
  align-items: center;
}

.character-avatar {
  width: 120px;
  border: 5px solid white;
  box-shadow: 5px 5px rgba(0, 0, 0, 0.75);
  transform: rotate(-5deg);
}

.character-name {
  font-size: 3.5rem;
}

.image-name {
  font-size: 2rem;
  margin: 0;
  line-height: 2rem;
}

.image-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.image-preview img {
  image-rendering: pixelated;
}

.image-preview-props {
  display: flex;
  flex-direction: column;
}

.prop-title {
  font-weight: bold;
}

.prop-value {
  font-weight: normal;
  opacity: 0.75;
}

.title-bar-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.window-icon {
  image-rendering: pixelated;
  width: 20px;
  margin-left: 2px;
}

.treeview-icon {
  image-rendering: pixelated;
  width: 20px;
  margin-left: 2px;
  margin-right: 2px;
}

.treeview-icon-label {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.meter-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.meter-groups {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}

.meter-group {
  width: calc(50% - 0.5rem);
}

.tilt-small {
  transform: rotate(1.5deg);
  margin: 0.75rem 0;
}

.tilt-medium {
  transform: rotate(2.5deg);
  margin: 1rem 0;
}

.tilt-large {
  transform: rotate(5deg);
  margin: 1.5rem 0;
}

.emote {
  display: inline-block;
  margin: 0;
  width: 1.05em;
  margin-left: 0.25em;
  margin-bottom: -0.25em;
}

.meter-group > p {
  display: inline;
}

.datatable {
  background-color: #f8f9fa;
  color: #202122;
  margin: 1em 0;
  border: 1px solid #a2a9b1;
  border-collapse: collapse;
}

.datatable > tr > th,
.datatable > tr > td,
.datatable > * > tr > th,
.datatable > * > tr > td {
  border: 1px solid #a2a9b1;
  padding: 0.2em 0.4em;
}

.datatable > tr > th,
.datatable > * > tr > th {
  background-color: #eaecf0;
  color: #202122;
  text-align: center;
}

.datatable > caption {
  font-weight: bold;
}

.people-list .person-name:not(:first-child) {
  margin-left: -0.3em;
}
.people-list .person-name:first-child:empty ~ .person-name:not(:empty) {
  margin-left: 0;
}
.people-list .person-name:first-child:empty ~ .person-name:not(:empty) ~ .person-name:not(:empty) {
  margin-left: -0.3em;
}
.people-list .person-name:empty {
  display: none;
}
.people-list .person-name:not(:first-child):before {
  content: ", ";
}
.people-list .person-name:empty + .person-name:not(:empty):before {
  content: "";
}
.people-list .person-name:not(:empty) ~ .person-name:empty + .person-name:not(:empty):before {
  content: ", ";
}

h1 {
  font-size: 4em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1.15em;
}

@media (max-width: 800px) {
  body {
    padding: 0.75rem 0.25rem;
  }
  main {
    width: 100%;
  }
  .main-window {
    width: 100%;
  }
  .button-column {
    display: flex;
    flex-direction: column;
  }
  .icon-button {
    width: 100%;
  }
  .icon-button {
    padding: 0.75rem 0.75rem;
  }
  .icon-button img {
    height: 48px;
  }
  .icon-button-sm {
    padding: 0.5rem 0.5rem;
  }
  .icon-button-sm img {
    height: 32px;
  }
  .title-bar-controls {
    display: none;
  }
  .character-header {
    flex-direction: column;
  }
  .character-name {
    margin: 0;
  }
  .desktop-icons {
    gap: 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .meter-group {
    width: 100%;
  }
  .window-body {
    padding: 0.25rem;
    margin: calc(var(--element-spacing) / 3);
  }
  .desktop-icons .icon img {
    width: 44px;
  }
  .desktop-icons .icon {
    font-size: calc(var(--font-size) - 4px);
  }
  .title-bar-text {
    margin-right: 0;
  }
  h1,
  h2,
  h3,
  h4,
  h5 {
    margin: 0.75rem 0;
  }
  p {
    margin: 0.5rem 0;
  }
  .content-area,
  .thumbnail-gallery {
    padding: 0.5rem;
    gap: 0.5rem;
  }
  .thumbnail-gallery {
    padding: 0.75rem 0.5rem;
    gap: 0.25rem;
    justify-content: space-evenly;
  }
  .thumbnail img {
    border-width: 3px;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.75);
  }
  .character-avatar {
    width: 200px;
  }
  .thumbnail img {
    width: 128px;
  }
  .thumbnail-medium .thumbnail-image,
  .thumbnail-medium .folder-thumbnail-image {
    width: 256px;
  }
  .thumbnail-large .thumbnail-image,
  .thumbnail-large .folder-thumbnail-image {
    width: 300px;
  }
  .folder img {
    width: 64px;
  }
  .folder,
  .thumbnail {
    gap: 0.25rem;
  }
}/*# sourceMappingURL=site.css.map */