:root {
  tab-size: 4;
}

*, ::before, ::after {
  box-sizing: inherit;
}

html {
  font-size: 16px;
  line-height: 1.15;
  text-size-adjust: 100%;
  box-sizing: border-box;
}

body {
  font-family: "Fira Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0px;
}
body.theme--nord {
  color: #ECEFF4;
  background-color: #434C5E;
}
body.theme--catppuccin {
  color: #cdd6f4;
  background-color: #1e1e2e;
}

.theme--nord main {
  background-color: #3B4252;
}
.theme--catppuccin main {
  background-color: #181825;
}

a {
  cursor: pointer;
  border-radius: 0.25em;
  text-decoration: none;
  transition: color 200ms ease-in-out 0s, background-color 200ms ease-in-out 0s;
}
.theme--nord a {
  color: #81A1C1;
}
.theme--catppuccin a {
  color: #f5c2e7;
}
.theme--nord a:hover, .theme--nord a:active, .theme--nord a:focus {
  color: #88C0D0;
  background-color: transparent;
}
.theme--catppuccin a:hover, .theme--catppuccin a:active, .theme--catppuccin a:focus {
  color: #cba6f7;
  background-color: transparent;
}

.button {
  cursor: pointer;
}
.theme--nord .button {
  background-color: #4C566A;
}
.theme--catppuccin .button {
  background-color: #45475a;
}
.theme--nord .button:hover, .theme--nord .button:active, .theme--nord .button:focus {
  background-color: #434C5E;
}
.theme--catppuccin .button:hover, .theme--catppuccin .button:active, .theme--catppuccin .button:focus {
  background-color: #313244;
}

h1, h2 {
  margin-top: 0px;
  margin-bottom: 0.5em;
}

h3 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.theme--nord h1, .theme--nord h2, .theme--nord h3, .theme--nord h4, .theme--nord h5, .theme--nord h6 {
  color: #ECEFF4;
}
.theme--catppuccin h1, .theme--catppuccin h2, .theme--catppuccin h3, .theme--catppuccin h4, .theme--catppuccin h5, .theme--catppuccin h6 {
  color: #cdd6f4;
}

/**
 * HEADER / FOOTER
 *
 */
header {
  width: 100%;
}
.theme--nord header {
  background-color: #2E3440;
}
.theme--catppuccin header {
  background-color: #11111b;
}

.headline {
  width: 100%;
  margin: 0px auto;
  padding: 0.5em 1.5em 0px 1.5em;
}

.subline {
  width: 100%;
  margin: 0px auto;
  padding: 0px 1.5em;
}

@media (min-width: 75em) {
  .headline {
    max-width: 75em;
    padding: 0.5em 0px 0px 0px;
  }
  .subline {
    max-width: 75em;
    padding: unset;
  }
}
.tagline {
  font-size: 1.3em;
  margin: 0px;
  padding-bottom: 1em;
}

footer {
  text-align: center;
  font-size: 0.9em;
}
.theme--nord footer {
  color: #9fa8b7;
}
.theme--catppuccin footer {
  color: #9fa8b7;
}

/**
 * INTRO
 *
 */
.intro {
  padding: 0.5em 0px;
}
.theme--nord .intro {
  background-color: #3B4252;
}
.theme--catppuccin .intro {
  background-color: #181825;
}

.about-content {
  width: 100%;
  margin: 0px auto;
  padding: 0px 1.5em;
  text-align: center;
}

.about-panels {
  display: grid;
  gap: 1em 4em;
}

@media (min-width: 56.25em) {
  .about-panels {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 75em) {
  .about-content {
    max-width: 75em;
    padding: 1em 0px;
    text-align: start;
  }
}
.about {
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: 0px;
}

@media (min-width: 37.5em) {
  .about {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 2em;
    text-align: start;
  }
}
.about-text {
  font-size: 1.1em;
  margin: 0.5em 0px;
}

/**
 * STORIES
 *
 */
.stories {
  padding-top: 2em;
  padding-bottom: 1em;
}
.theme--nord .stories {
  background-color: #434C5E;
}
.theme--catppuccin .stories {
  background-color: #1e1e2e;
}

@media (min-width: 37.5em) {
  .stories {
    padding: 1em 0px;
  }
}
.stories-content {
  width: 100%;
  margin: 0px auto;
  padding: 0px 1.5em;
  text-align: center;
}

.stories-panel {
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 8px;
  padding: 2em;
  transition: box-shadow 0.4s ease-in-out 0s, background-color 0.4s ease-in-out 0s;
}
.theme--nord .stories-panel {
  box-shadow: rgba(15, 17, 21, 0.35) 0px 6px 9px 0px;
  background-color: #2E3440;
}
.theme--catppuccin .stories-panel {
  box-shadow: #f5c2e7 0px 0px 16px 0px;
  background-color: #11111b;
}

@media (min-width: 37.5em) {
  .stories-panel {
    text-align: start;
  }
}
@media (min-width: 75em) {
  .stories-content {
    max-width: 75em;
    padding: 1em 0px;
    text-align: start;
  }
}
.about-text {
  font-size: 1.1em;
  margin: 0.5em 0px;
}

/**
 * CARDS
 *
 */
.theme--nord .homepage {
  background-color: #434C5E;
}
.theme--catppuccin .homepage {
  background-color: #1e1e2e;
}

.card {
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 8px;
  padding: 2em;
  transition: box-shadow 0.4s ease-in-out 0s, background-color 0.4s ease-in-out 0s;
}
.theme--nord .card {
  box-shadow: rgba(15, 17, 21, 0.35) 0px 6px 9px 0px;
  background-color: #2E3440;
}
.theme--catppuccin .card {
  box-shadow: #f5c2e7 0px 0px 16px 0px;
  background-color: #11111b;
}

@media (min-width: 37.5em) {
  .card {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 2em;
    text-align: start;
  }
}
.cardgrid {
  display: grid;
  gap: 2em 4em;
}

@media (min-width: 56.25em) {
  .cardgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4em;
  }
}
.content-wrap {
  width: 100%;
  margin: 0px auto;
  padding: 1em 1.5em;
}

@media (min-width: 75em) {
  .content-wrap {
    max-width: 75em;
    padding: unset;
  }
}
@media (min-width: 56.25em) {
  .content-wrap {
    padding-top: 2em;
    padding-bottom: 4em;
  }
}
.card-content:last-child {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.card-content:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card-image {
  margin: 0px auto 1em;
  width: 3em;
}
.card-image img {
  width: 48px;
  height: auto;
}

/**
 * STORIES
 *
 */
.story {
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: 1em;
  border-radius: 0.25em;
}
.theme--nord .story {
  background-color: #3B4252;
}
.theme--catppuccin .story {
  background-color: #181825;
}

@media (min-width: 37.5em) {
  .story {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em 4em;
    text-align: start;
  }
}
.story-title {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.theme--nord .story-title {
  color: #81A1C1;
}
.theme--catppuccin .story-title {
  color: #f5c2e7;
}

.story-genre {
  margin: 0 auto;
}

.story-words {
  margin: 0 auto;
}

.story-links {
  display: flex;
  margin: 0 auto;
}

.story-link {
  display: flex;
  width: fit-content;
  margin-left: 1em;
  padding: 0 0.25em;
}
.theme--nord .story-link {
  color: #88C0D0;
  background-color: #4C566A;
}
.theme--catppuccin .story-link {
  color: #f5c2e7;
  background-color: #45475a;
}
.theme--nord .story-link:hover, .theme--nord .story-link:active, .theme--nord .story-link:focus {
  color: #88C0D0;
  background-color: #5a657d;
}
.theme--catppuccin .story-link:hover, .theme--catppuccin .story-link:active, .theme--catppuccin .story-link:focus {
  color: #cba6f7;
  background-color: #313244;
}

.story-link:not(:first-child) {
  margin-left: 1em;
}

.story-filetype {
  flex: 1;
}

.story-synopsis {
  grid-area: 2/1/3/4;
  margin: 0;
  padding: 0.5em;
}
.story-synopsis p {
  margin: 0px;
}

@media (min-width: 56.25em) {
  .story-synopsis {
    margin: 0px 2em;
  }
}
/**
 * ICONS
 *
 */
.icon {
  flex: 1;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: 0px;
}

.icon-pdf {
  background-image: url("../icons/svg/file-pdf-o.svg");
  background-size: 18px 18px;
}

.icon-epub {
  background-image: url("../icons/svg/file-epub.svg");
  background-size: 18px 18px;
}

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