/* Mobile Stylesheets */
body {
  padding: 0;
  margin: 0;
  background-color: #141414;
  font-family: "Outfit", serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}

#mobile-nav {
  display: block;
  background-color: transparent;
  padding: 0.5em 1em 0;
}
#mobile-nav #front {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#mobile-nav #front #title {
  margin-right: auto;
  padding-left: 1em;
  text-decoration: none;
  color: white;
  font-size: 1.3rem;
}
#mobile-nav #front #toggle-bars {
  margin-left: auto;
  padding-right: 1em;
  color: white;
}
#mobile-nav #front #toggle-bars .fa-bars {
  font-size: 3em;
}
#mobile-nav #mobile-links {
  display: none;
}
#mobile-nav #mobile-links #mobile-links-list {
  list-style-type: none;
  font-size: 2em;
  margin: auto;
  padding: 0;
  text-align: center;
}
#mobile-nav #mobile-links #mobile-links-list li {
  margin-bottom: 1em;
}
#mobile-nav #mobile-links #mobile-links-list li a {
  color: white;
  text-decoration: none;
}
#mobile-nav #mobile-links #mobile-links-list li .dropdown-menu {
  padding: 0;
  text-align: center;
  display: none;
  background-color: rgba(0, 0, 0, 0.6156862745);
  padding: 1em;
  border-radius: 25px;
}
#mobile-nav #mobile-links #mobile-links-list li .dropdown-menu li {
  display: block;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 20px;
  text-align: center;
  color: red;
}
#mobile-nav #mobile-links #mobile-links-list li:hover .dropdown-menu {
  display: block;
}
#mobile-nav #mobile-links #mobile-nav-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3em;
  padding-bottom: 1em;
}
#mobile-nav #mobile-links #mobile-nav-icons .circles {
  display: grid;
  place-items: center;
  background-color: rgba(0, 0, 0, 0.8352941176);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  font-size: 2rem;
  text-decoration: none;
  font-weight: bold;
}
#mobile-nav #mobile-links #mobile-nav-icons .circles .fa-deviantart {
  color: #00e59b;
  font-size: 2rem;
}
#mobile-nav #mobile-links #mobile-nav-icons .circles .fa-x-twitter {
  color: #FFFFFF;
  font-size: 2rem;
}
#mobile-nav #mobile-links #mobile-nav-icons .circles .subscribestar {
  width: 2em;
  height: 2em;
}

#desktop-nav {
  display: none;
}

#video-background {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -1;
}

#banner {
  background-color: black;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  margin: 0;
  padding: 0.3em;
}

.urls {
  color: #ff4081;
}

#welcome-section {
  display: grid;
  place-items: center;
  color: white;
}
#welcome-section img {
  height: auto;
  width: 350px;
}
#welcome-section p {
  text-align: center;
  margin: 0 1em 0;
  font-size: 1.7rem;
  text-shadow: 2px 2px #04086a;
}
#welcome-section #comms-shop {
  text-shadow: none;
}
#welcome-section #comms-shop a {
  color: #FFFFFF;
  text-decoration: underline;
}

#latest-comics {
  animation: rgb 5s linear 2s infinite;
  font-size: 2rem;
}

@keyframes rgb {
  0% {
    color: rgb(255, 0, 0);
  }
  25% {
    color: rgb(0, 255, 0);
  }
  50% {
    color: rgb(0, 0, 255);
  }
  75% {
    color: rgb(128, 0, 128);
  }
  100% {
    color: rgb(255, 20, 147);
  }
}
#latest-comics {
  text-align: center;
  color: white;
  text-decoration: underline;
}

.media-scroller {
  display: grid;
  gap: 0.5rem;
  grid-auto-flow: column;
  grid-auto-columns: 75%;
  padding: 0 0.5rem 0.5rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  margin: 0 auto 0;
  text-align: center;
}
.media-scroller .media-element {
  display: grid;
  grid-template-row: min-content;
  gap: 0.5rem;
  padding: 0.5rem;
  color: white;
}
.media-scroller .media-element img {
  inline-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid;
  animation: rgb 5s linear infinite;
}
.media-scroller .media-element p {
  font-size: 1.7rem;
}

.snaps-inline {
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 0.5rem;
}
.snaps-inline * {
  scroll-snap-align: start;
}

#models-page h2 {
  text-align: center;
  color: white;
  font-size: 1.5rem;
}
#models-page #models-container {
  color: white;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
#models-page #models-container .boxes {
  border: solid black 4px;
  border-radius: 30px;
  width: 160px;
  height: auto;
  box-shadow: 5px 10px rgba(0, 0, 0, 0.5019607843);
}
#models-page #models-container .boxes .model-images,
#models-page #models-container .boxes img {
  -o-object-fit: cover;
     object-fit: cover;
  width: inherit;
  height: inherit;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
#models-page #models-container .boxes h3 {
  text-align: center;
  font-size: 1.2em;
}
#models-page #models-container .boxes p {
  margin-left: 0.5em;
  margin-right: 0.5em;
  font-size: 20px;
}

#model-page h2 {
  font-size: 2rem;
  color: white;
  text-align: center;
}
#model-page .main-image {
  padding-bottom: 3em;
}
#model-page .main-image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 350px;
  height: auto;
}
#model-page .main-image p {
  padding: 1em 1.5em 0;
  color: white;
  font-size: 1.5rem;
}
#model-page .main-image .bio-boxes {
  height: 400px;
  width: auto;
  overflow: auto;
}
#model-page .main-image button {
  display: block;
  margin: 3em auto 0;
  border: none;
  background-color: white;
  border-radius: 25px;
  padding: 1em 2em;
}
#model-page .main-image button a {
  text-decoration: none;
  color: #138eed;
  font-size: 1.2rem;
}
#model-page .main-image .nsfwchat {
  background-color: #000000;
}
#model-page .main-image .nsfwchat a {
  color: #ecedee;
}
#model-page .model-renders {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin: 0 1em 0;
}
#model-page .model-renders .lightbox-images {
  width: 150px;
  height: auto;
  cursor: pointer;
}
#model-page .model-renders .lightbox-images-clicked {
  position: fixed;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: rgba(0, 0, 0, 0.8980392157);
  width: 100%;
  height: 100%;
}

#comics-page h2 {
  text-align: center;
  color: white;
}
#comics-page #comics-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0.3em;
}
#comics-page #comics-container h2 {
  font-size: 1.7em;
  color: white;
}
#comics-page #comics-container .boxes {
  border: solid black 4px;
  border-radius: 15px;
  width: 170px;
  height: auto;
  color: white;
  box-shadow: 5px 10px rgba(0, 0, 0, 0.5019607843);
}
#comics-page #comics-container .boxes .comics-thumbnail,
#comics-page #comics-container .boxes img {
  -o-object-fit: contain;
     object-fit: contain;
  width: inherit;
  height: inherit;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
#comics-page #comics-container .boxes h3 {
  margin-left: 0.5em;
  margin-right: 0.5em;
  text-decoration: underline;
  font-size: 1.3em;
  text-align: center;
}
#comics-page #comics-container .boxes .bold {
  font-weight: bold;
}
#comics-page #comics-container .boxes p {
  margin-left: 0.5em;
  margin-right: 0.5em;
  font-size: 20px;
}
#comics-page #comics-container .boxes p a {
  color: #FF2449;
}
#comics-page #paginationControls {
  display: block;
  width: 100%;
  margin: 1em auto 0;
  text-align: center;
}
#comics-page #paginationControls button {
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
}
#comics-page #paginationControls i {
  color: white;
}
#comics-page #paginationControls #currentPageDisplay,
#comics-page #paginationControls .slash,
#comics-page #paginationControls #totalPagesDisplay {
  font-size: 2rem;
  color: white;
  padding: 0 0.5em 0;
}

.comics h2 {
  text-align: center;
  color: white;
}
.comics .comic-renders {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin: 0 1em 0;
}
.comics .comic-renders .lightbox-images {
  width: 150px;
  height: auto;
  cursor: pointer;
}
.comics .comic-renders .lightbox-images-clicked {
  position: fixed;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: rgba(0, 0, 0, 0.8980392157);
  width: 100%;
  height: 100%;
}

.prev-image,
.next-image {
  display: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  z-index: 10;
  background: transparent;
  color: #ff424d;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
  width: 60px;
  height: 60px;
  text-align: center;
}

.prev-image:hover,
.next-image:hover {
  opacity: 0.7;
}

.prev-image {
  left: 1em;
}

.next-image {
  right: 1em;
}

#gallery-page h2,
#gallery-page h3 {
  color: white;
  text-align: center;
}
#gallery-page .gallery-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
  padding: 0 1em 0;
}
#gallery-page .gallery-container .lightbox-images {
  width: 150px;
  height: auto;
  cursor: pointer;
}
#gallery-page .gallery-container .lightbox-images-clicked {
  position: fixed;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: rgba(0, 0, 0, 0.8980392157);
  width: 100%;
  height: 100%;
}
#gallery-page .pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7em;
}
#gallery-page .pagination .current-page,
#gallery-page .pagination .page-numbers {
  font-size: 1.3rem;
  text-align: center;
  width: 20px;
  height: auto;
  color: white;
  text-decoration: none;
  border: solid white 1px;
}
#gallery-page .pagination .current-page,
#gallery-page .pagination .page-numbers:active {
  background-color: white;
  color: #141414;
}

#animations-page h2,
#animations-page h3 {
  color: white;
  text-align: center;
}
#animations-page #animations-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
#animations-page #animations-container video {
  width: 330px;
  height: 250px;
}

#shop-page img {
  display: block;
  margin: 0 auto;
  width: 100vw;
  height: auto;
}
#shop-page #discord-image {
  text-align: center;
}
#shop-page #discord-image img {
  display: inline-block;
  width: 75vw;
  height: auto;
}
#shop-page h2 {
  text-align: center;
  color: white;
  font-size: 2rem;
}
#shop-page h3 {
  text-align: center;
  color: white;
  font-size: 1.7rem;
}
#shop-page .text {
  padding: 0 1.5em;
}
#shop-page .text p {
  font-size: 22px;
  color: white;
}
#shop-page .faq {
  padding: 0 1.5em;
  color: white;
  font-size: 1.5rem;
}
#shop-page .faq .toggle-questions {
  cursor: pointer;
}
#shop-page .faq .questions {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#shop-page .faq .questions .question {
  text-decoration: underline;
}
#shop-page #rules {
  padding: 0 1.5em;
  color: white;
  font-size: 1.5rem;
  line-height: 1.5;
}
#shop-page #rules #rules-toggle {
  cursor: pointer;
}

#backUp {
  display: none;
  position: fixed;
  bottom: 2em;
  right: 2.5em;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #fefefe;
  color: #141414;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  font-size: 1.7em;
}

footer {
  margin-top: 4em;
  color: white;
  font-style: italic;
  text-align: center;
}

#popup {
  display: none;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  padding-top: 0;
  background: rgba(0, 0, 0, 0.9803921569);
}
#popup #verify-window {
  display: block;
  width: auto;
  padding: 1em;
  margin: 0.5em;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1f1f1f;
  color: white;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.2rem;
  box-shadow: 5px 8px rgba(0, 0, 0, 0.8078431373);
}
#popup #verify-window .popup-buttons {
  border: solid #e000a3 3px;
  border-radius: 30px;
  color: white;
  background-color: #131313;
  padding: 0.7em 2em 0.7em;
  font-size: 1.1em;
}
#popup #verify-window .accept-cookies {
  margin-bottom: 0.7em;
}
#popup #verify-window .popup-buttons:active {
  border: solid white 3px;
  color: #e000a3;
}

/* Tablets */
@media only screen and (min-width: 480px) {
  #mobile-nav {
    display: block;
  }
  #mobile-nav #front {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #mobile-nav #front #title {
    margin-right: auto;
    padding-left: 3em;
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
  }
  #mobile-nav #front #toggle-bars {
    margin-left: auto;
    padding-right: 3em;
    color: white;
  }
  #mobile-nav #front #toggle-bars .fa-bars {
    font-size: 2.5em;
  }
  #mobile-nav #mobile-links {
    display: none;
  }
  #mobile-nav #mobile-links #mobile-links-list {
    list-style-type: none;
    font-size: 2em;
    margin: auto;
    padding: 0;
    text-align: center;
  }
  #mobile-nav #mobile-links #mobile-links-list li {
    margin-bottom: 1em;
  }
  #mobile-nav #mobile-links #mobile-links-list li a {
    color: white;
    text-decoration: none;
  }
  #mobile-nav #mobile-links #mobile-nav-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3em;
    padding-bottom: 1em;
  }
  #mobile-nav #mobile-links #mobile-nav-icons .circles {
    display: grid;
    place-items: center;
    background-color: black;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
  }
  #mobile-nav #mobile-links #mobile-nav-icons .circles .fa-deviantart {
    color: #00e59b;
    font-size: 2rem;
  }
  #mobile-nav #mobile-links #mobile-nav-icons .circles .fa-x-twitter {
    color: #FFFFFF;
    font-size: 2rem;
  }
  #mobile-nav #mobile-links #mobile-nav-icons .circles .subscribestar {
    width: 2em;
    height: 2em;
  }
  .media-scroller {
    grid-auto-columns: 50%;
  }
  .snaps-inline {
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 0.5rem;
  }
  .snaps-inline * {
    scroll-snap-align: start;
  }
  #welcome-section img {
    height: auto;
    width: 700px;
  }
  #welcome-section p {
    width: 50vw;
  }
  #models-page #models-container .boxes {
    border: solid black 4px;
    border-radius: 30px;
    width: 200px;
    height: auto;
    box-shadow: 5px 10px rgba(0, 0, 0, 0.5019607843);
  }
  #models-page #models-container .boxes h3 {
    font-size: 1.2rem;
  }
  #model-page p {
    margin: 1em 3em 0;
  }
  #model-page .bio-boxes {
    height: 400px;
    width: auto;
    overflow: auto;
  }
  #model-page .model-renders {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    margin: 0 1em 0;
  }
  #model-page .model-renders .lightbox-images {
    width: 200px;
    height: auto;
    cursor: pointer;
  }
  #model-page .model-renders .lightbox-images-clicked {
    position: fixed;
    left: 0;
    top: 0;
    -o-object-fit: contain;
       object-fit: contain;
    background-color: rgba(0, 0, 0, 0.8980392157);
    width: 100%;
    height: 100%;
  }
  #comics-page h2 {
    text-align: center;
    color: white;
  }
  #comics-page #comics-container {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 1em;
    justify-content: space-around;
    grid-gap: 1em;
    margin: 0 1em 0;
  }
  #comics-page #comics-container h2 {
    font-size: 1.7em;
    color: white;
  }
  #comics-page #comics-container .boxes {
    border: solid black 4px;
    border-radius: 15px;
    width: 325px;
    height: auto;
    color: white;
    box-shadow: 5px 10px rgba(0, 0, 0, 0.5019607843);
  }
  #comics-page #comics-container .boxes .comics-thumbnail,
  #comics-page #comics-container .boxes img {
    -o-object-fit: contain;
       object-fit: contain;
    width: inherit;
    height: inherit;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
  }
  #comics-page #comics-container .boxes h3 {
    margin-left: 0.5em;
    margin-right: 0.5em;
    text-decoration: underline;
    font-size: 1.3em;
  }
  #comics-page #comics-container .boxes .bold {
    font-weight: bold;
  }
  #comics-page #comics-container .boxes p {
    margin-left: 0.5em;
    margin-right: 0.5em;
    font-size: 18px;
  }
  .comics .comic-renders .lightbox-images {
    width: 200px;
  }
  .comics .comic-renders .lightbox-images-clicked {
    position: fixed;
    left: 0;
    top: 0;
    -o-object-fit: contain;
       object-fit: contain;
    background-color: rgba(0, 0, 0, 0.8980392157);
    width: 100%;
    height: 100%;
  }
  .prev-image,
  .next-image {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
  }
  #gallery-page .gallery-container .lightbox-images {
    width: 150px;
  }
  #gallery-page .gallery-container .lightbox-images-clicked {
    position: fixed;
    left: 0;
    top: 0;
    -o-object-fit: contain;
       object-fit: contain;
    background-color: rgba(0, 0, 0, 0.8980392157);
    width: 100%;
    height: 100%;
  }
  #animations-page #animations-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 0.5em;
  }
  #animations-page #animations-container video {
    width: 400px;
    height: auto;
  }
  #verify-window {
    display: block;
    margin: 1em;
    width: auto;
    padding: 1em;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    background-color: #1f1f1f;
    color: white;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 5px 8px rgba(0, 0, 0, 0.8078431373);
  }
}
/* Desktop Stylesheets */
@media only screen and (min-width: 1025px) {
  #mobile-nav {
    display: none;
  }
  #desktop-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: transparent;
    font-size: 1.7rem;
  }
  #desktop-nav #desktop-title {
    color: white;
    text-decoration: none;
  }
  #desktop-nav #desktop-title:hover {
    opacity: 0.5;
  }
  #desktop-nav #desktop-links {
    display: block;
    text-align: center;
  }
  #desktop-nav #desktop-links ul {
    list-style-type: none;
    margin: 0;
    word-spacing: 1em;
  }
  #desktop-nav #desktop-links ul li {
    display: inline-block;
  }
  #desktop-nav #desktop-links ul li a {
    color: white;
    text-decoration: none;
  }
  #desktop-nav #desktop-links ul li .dropdown-menu {
    position: absolute;
    padding: 0;
    text-align: left;
    display: none;
    padding: 1em;
    background-color: rgba(0, 0, 0, 0.9333333333);
    border-radius: 0 0 15px 15px;
  }
  #desktop-nav #desktop-links ul li .dropdown-menu li {
    display: block;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 10px;
    text-align: left;
  }
  #desktop-nav #desktop-links ul li .dropdown-menu .shop-types {
    word-spacing: 0;
  }
  #desktop-nav #desktop-links ul li:hover .dropdown-menu {
    display: block;
  }
  #desktop-nav #desktop-nav-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1em;
  }
  #desktop-nav #desktop-nav-icons .circles {
    display: grid;
    place-items: center;
    background-color: rgba(0, 0, 0, 0.8352941176);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    text-decoration: none;
    font-weight: bold;
  }
  #desktop-nav #desktop-nav-icons .circles .fa-deviantart {
    color: #00e59b;
    font-size: 2rem;
  }
  #desktop-nav #desktop-nav-icons .circles .fa-x-twitter {
    color: #FFFFFF;
    font-size: 2rem;
  }
  #desktop-nav #desktop-nav-icons .circles .subscribestar {
    width: 2em;
    height: 2em;
  }
  #desktop-nav #desktop-nav-icons .circles .fa-twitch {
    color: #A970FF;
  }
  #video-background {
    -o-object-fit: cover;
       object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  #welcome-section {
    display: grid;
    place-items: center;
    color: white;
    text-align: center;
    font-size: 2rem;
  }
  #welcome-section img {
    height: auto;
    width: 100vw;
  }
  #welcome-section p {
    padding: 0 5em;
  }
  #welcome-section #content-links {
    margin-bottom: 1.3em;
  }
  .media-scroller {
    display: grid;
    gap: 1rem;
    grid-auto-flow: column;
    grid-auto-columns: 25%;
    padding: 0 1rem 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    margin: 0 auto 0;
  }
  .media-scroller .media-element {
    display: grid;
    grid-template-row: min-content;
    gap: 1rem;
    padding: 1rem;
    color: white;
  }
  .snaps-inline {
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 1rem;
  }
  .snaps-inline * {
    scroll-snap-align: start;
  }
  #models-page {
    margin-left: 5em;
    margin-right: 5em;
  }
  #models-page #models-container .boxes {
    border: solid black 4px;
    border-radius: 30px;
    width: 300px;
    height: auto;
    box-shadow: 5px 10px rgba(0, 0, 0, 0.5019607843);
  }
  #models-page #models-container .boxes h3 {
    font-size: 1.5rem;
  }
  #model-page .main-image {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    padding-bottom: 3em;
  }
  #model-page .main-image img {
    width: auto;
    height: 500px;
    margin: 0;
  }
  #model-page .main-image p {
    margin: 0;
    width: 700px;
    color: white;
    font-size: 1.3rem;
  }
  #model-page .main-image .bio-boxes {
    height: 300px;
    width: auto;
    overflow: auto;
  }
  #model-page h2 {
    color: white;
    text-align: center;
  }
  #model-page .model-renders {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin: 0 1em 0;
  }
  #model-page .model-renders .lightbox-images {
    width: 350px;
    height: auto;
    cursor: zoom-in;
  }
  #model-page .model-renders .lightbox-images-clicked {
    position: fixed;
    left: 0;
    top: 0;
    -o-object-fit: contain;
       object-fit: contain;
    cursor: zoom-out;
    background-color: rgba(0, 0, 0, 0.8980392157);
    width: 100%;
    height: 100%;
  }
  #shop-page img {
    display: block;
    margin: 0 auto;
    width: 65vw;
    height: auto;
  }
  #shop-page #discord-image {
    text-align: center;
  }
  #shop-page #discord-image img {
    display: inline-block;
    width: 50vw;
    height: auto;
  }
  #shop-page .text {
    padding: 0 10em;
  }
  #shop-page .text p {
    font-size: 1.5rem;
  }
  #shop-page .faq {
    padding: 0 10em;
    font-size: 1.5rem;
  }
  #shop-page .faq .questions {
    padding: 0;
    margin: 0;
  }
  #shop-page #rules {
    padding: 0 10em;
    font-size: 1.5rem;
  }
  #gallery-page {
    margin-left: 5em;
    margin-right: 5em;
  }
  #gallery-page .gallery-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1em;
  }
  #gallery-page .gallery-container .lightbox-images {
    width: 200px;
    height: auto;
    cursor: pointer;
  }
  #gallery-page .gallery-container .lightbox-images-clicked {
    position: fixed;
    left: 0;
    top: 0;
    -o-object-fit: contain;
       object-fit: contain;
    background-color: rgba(0, 0, 0, 0.8980392157);
    width: 100%;
    height: 100%;
  }
  #comics-page {
    margin-left: 5em;
    margin-right: 5em;
  }
  #comics-page #comics-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  #comics-page #comics-container .boxes {
    width: 400px;
  }
  #comics-page #comics-container .boxes p {
    font-size: 1.3rem;
  }
  .comics {
    margin-left: 5em;
    margin-right: 5em;
  }
  .comics h2 {
    text-align: center;
    color: white;
  }
  .comics .comic-renders {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    margin: 0 1em 0;
  }
  .comics .comic-renders .lightbox-images {
    width: 300px;
    height: auto;
    cursor: zoom-in;
  }
  .comics .comic-renders .lightbox-images-clicked {
    position: fixed;
    left: 0;
    top: 0;
    -o-object-fit: contain;
       object-fit: contain;
    background-color: rgba(0, 0, 0, 0.8980392157);
    width: 100%;
    height: 100%;
    cursor: zoom-out;
  }
  .prev-image,
  .next-image {
    font-size: 2rem;
    width: 65px;
    height: 65px;
  }
  #animations-page #animations-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 0.5em;
  }
  #animations-page #animations-container video {
    width: 500px;
    height: auto;
  }
  #popup {
    display: none;
  }
  #popup #verify-window {
    display: block;
    width: 600px;
    padding: 1em;
    margin: 3em auto;
    height: auto;
  }
}
/* Desktop 1440p Stylesheets */
@media only screen and (min-width: 1400px) {
  #desktop-nav {
    padding-left: 5em;
    padding-right: 5em;
    font-size: 1.7rem;
  }
  #welcome-section img {
    height: 60vh;
    width: auto;
  }
  #welcome-section p {
    padding: 0 13em;
  }
  #welcome-section #content-links {
    margin-bottom: 1.3em;
  }
  #models-page,
  #comics-container,
  #gallery-page {
    padding-left: 5em;
    padding-right: 5em;
  }
  #models-page {
    margin-left: 5em;
    margin-right: 5em;
  }
  #models-page #models-container .boxes {
    border: solid black 4px;
    border-radius: 30px;
    width: 300px;
    height: auto;
    box-shadow: 5px 10px rgba(0, 0, 0, 0.5019607843);
  }
  #shop-page img {
    display: block;
    margin: 0 auto;
    width: 65vw;
    height: auto;
  }
  #shop-page #discord-image {
    text-align: center;
  }
  #shop-page #discord-image img {
    display: inline-block;
    width: 40vw;
    height: auto;
  }
  #shop-page .text {
    padding: 0 25em;
  }
  #shop-page .text p {
    font-size: 1.5rem;
  }
  #shop-page .faq {
    padding: 0 25em;
    font-size: 1.5rem;
  }
  #shop-page .faq .questions {
    padding: 0;
    margin: 0;
  }
  #shop-page #rules {
    padding: 0 25em;
    font-size: 1.5rem;
  }
  #welcome-section img {
    height: 600px;
    width: auto;
  }
  .comics {
    margin-left: 10em;
    margin-right: 10em;
  }
  #terms-conditions-page {
    padding: 1em 5em 1em;
  }
}/*# sourceMappingURL=styles.css.map */