/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Shantell+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
  font-family: 'Montserrat Alternates', 'Arial', sans-serif;
  font-weight: 400;
}

.brand {
  font-family: 'Shantell Sans';
  font-size: 18px;
}

.next-comic, .next-panel, .previous-comic, .previous-panel, .current-comic, .current-panel {
  position: initial;
  top: initial;
  z-index: initial;
}

.hidden-picture {
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: -999;
}

.bg-brand-gradient {
  background-color: #6fccdd;
  background-image: linear-gradient(315deg, #2accdc 0%, #f3ea1e 100%);
}

.bg-brand-button {
  background-color: #f3ea1e;
  color: black;
  cursor: pointer;
  transition: all 250ms;
}

.bg-brand-button:hover {
  background-color: #E0D71B;
}

.bg-brand-cta-button:hover {
  transform: scale(1.05);
}

.bg-brand-button:focus {
  background-color: #CFC519;
}

.bg-brand-notice {
  background-color: #f3ea1e;
  color: #65610b;
}

.bg-brand-select-button {
  background-color: white;
  color: black;
  transition: all 250ms;
}

.bg-brand-select-button:hover, .bg-brand-select-button.selected {
  background-color: #f3ea1e;
}

.bg-brand-select-button:focus {
  background-color: #CFC519;
}

.bg-brand-menu {
  background-color: #f3ea1e;
  color: black;
}

.bg-brand-link-button-selected {
  background-color: #f3ea1e;
  color: black;
  cursor: pointer;
}

.bg-brand-link-button-unselected {
  background-color: #e5e7eb;
  color: #99a1af;
  cursor: pointer;
}

.bg-brand-link {
  color: #39BFB9;
  cursor: pointer;
  transition: color 250ms;
}

.bg-brand-link:hover {
  color: #34ADA7;
}

.bg-brand-link:focus {
  color: #2F9C96;
}

.bg-brand-link-subtle {
  color: #6a7282;
  transition: color 250ms;
}

.bg-brand-link-subtle:hover {
  color: #34ADA7;
}

.bg-brand-link-subtle:focus {
  color: #2F9C96;
}

.bg-brand-link-header {
  color: black;
  transition: color 250ms;
}

.bg-brand-link-header:hover {
  color: #34ADA7;
}

.bg-brand-link-header:focus {
  color: #2F9C96;
}

.bg-brand-icon {
  fill: white;
  stroke: black;
}

.bg-brand-icon:hover {
  fill: white;
  stroke: #34ADA7;
}

.bg-brand-selected-icon {
  stroke: white;
  fill: black;
}

.bg-brand-selected-icon:hover {
  stroke: white;
  fill: #34ADA7;
}

textarea:focus, input:focus{
  outline: none;
  box-shadow: 0 0 0 2px rgba(243, 234, 30, .5);
}

nav.pagy {
  margin: 20px auto 0;
  text-align: center;
}

nav.pagy a {
  padding: 5px;
  background-color: #f3ea1e;
  border-radius: 5px;
  margin-right: 3px;
  margin-left: 3px;
  font-weight: 600;
}