/* Contains the information regarding the background */
html {
  min-height: 100vh;
  min-widtht: 100vw;
  background-image: linear-gradient(#feecfc, #e9d7fe);
  overflow: auto;
  margin: auto;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Body rules */
body {
  padding: 5px;
  display: flex;
}

/* Helps size the boxes */
* {
  box-sizing: border-box;
}

/* Everything in the p should be this color and have this font */
p {
  font-family: "Audiowide", sans-serif;
  color: #6739a7;
}

/* Everything in the a should be this color and have this font */
a {
  font-family: "Audiowide", sans-serif;
  color: #6739a7;
}

.banner-container {
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  margin: 5px;
  align-self: center;
  border: 1px solid #6739a7;
}

/* The background container that stays the same on each HTML page */
.main-container {
  background-color: #fffffa;
  box-shadow: 3px 3px 0 rgba(191, 136, 216);
  height: auto;
  width: 85%;
  padding: 20px;
  border-radius: 5px;
  border: 2px solid #6739a7;
}

/* This is the main container for the navigation bar */
.navigation-bar {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: #babef2;
  padding: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #6739a7;
  box-shadow: 3px 3px 0 rgba(191, 136, 216)
}

/* This is the rules for all of the items in the navigation bar */
.navigation-bar a {
  color: #6739a7;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-size: 17px;
  border-radius: 5px;
  transition: background-color 0.6s ease;
}

/* This is the rules for when you hover over an item in the navigation bar */
.navigation-bar a:hover {
  color: white;
  background-color: rgba(191, 136, 216);
}

/* This is the rules for an item that is active on the navigation bar */
.navigation-bar a.active {
  background-color: #8e64c9;
  border-radius: 5px;
  color: white;
}

.warning {
  background-color: rgba(191, 136, 216);
  border-radius: 5px;
  padding: 5px;
  color: white;
  font-size: 12px;
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

/* Generic keyframes for fade */
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Everything above here is the same on each page */

/* Special padding rules for the profile text */
.main-row {
  padding: 5px;
  margin-top:20px;
  margin-bottom:20px;
  border-radius: 5px;
  max-width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}

/* Special rules for the profile picture */
.pfp {
  border-radius: 100%;
  height: auto;
  width: 20vw;
  padding: 10px;
  margin-right: 10px;
  align-items: center;
  object-fit: cover;
  border: 2px dashed #6739a7;
}

/* Special rules for the profile information container */
.profile-info {
  text-align: left;
  padding: 5px;
  background-color: #babef2;
  box-shadow: 3px 3px 0 rgb(191, 136, 216);
  border-radius: 5px;
  font-size: 15px;
  display: flex;
  border: 1px solid #6739a7;
}

/* Container for vertical aligning to the left */
.profile-block {
  align-items: flex-start;
  flex-direction: column;
  padding: 5px;
}

/* Special Rules regarding making the profile text fit */
.profile-row {
  display: flex;
  gap: 5px;
  align-self: flex-end;
  margin-bottom: -20px;
  margin-top: -10px;
}

/* Special Rules for the commissions and requests icons in the profile container */
.profile-row p {
  background-color: #8e64c9;
  border-radius: 5px;
  color: white;
  padding: 5px;
}

/* Profile Quote */
.profile-quote {
  font-size: 18px;
}

/* Profile Text */
.profile-text {
  font-size: 24px;
}

/* Special rules regarding the pagedoll */
.pagedoll {
  height: auto;
  width: 20vw;
}

/* Container for featured */
.featured {
  border: 1px solid #6739a7;
  padding: 5px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 20px;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

/* Special rules */
.golden-box {
  color: #6739a7;
  background-color: #babef2;
  box-shadow: 3px 3px 0 rgba(191, 136, 216);
  border: 1px solid #6739a7;
  text-decoration: none;
  border-radius: 5px;
  padding: 5px;
}

/* Special rules for the view more */

.featured a {
  color: #6739a7;
  background-color: #babef2;
  box-shadow: 3px 3px 0 rgba(191, 136, 216);
  border: 1px solid #6739a7;
  text-decoration: none;
  border-radius: 5px;
  padding: 5px;
  transition: background-color 0.6s ease;
}

.featured a:hover {
  background-color: rgba(191, 136, 216);
  color: white;
  box-shadow: 3px 3px 0 #6739a7;
}

/* Rules for the character row */
.character-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

/* Rules for the character boxes */
.character-box {
  display: block;
  flex-diretcion: column;
  padding: 5px;
  margin-bottom: 20px;
  border: 1px solid #6739a7;
  border-radius: 5px;
  width: 23%;
}

/* Rules for the character images */
.character-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  align-self: center;
}

/* Character Name text */
.character-link {
  display: block;
  transition: background-color 0.6s ease;
}

/* Special Case for Folder Container */
.folders-container {
  border: 1px solid #6739a7;
  padding: 5px;
  border-radius: 5px;
  margin-top: 20px;
}

/* Special Rule for folders (not including back button) */
.folders {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 5px;
}

/* Special case for Folders */
.folders a {
  background-color: #babef2;
  border-radius: 5px;
  color: #6739a7;
  box-shadow: 3px 3px 0 rgba(191, 136, 216);
  padding: 10px;
  text-decoration: none;
  transition: background-color 0.6s ease;
  margin-bottom: 10px;
  border: 1px solid #6739a7;
}

/* Special case for when hovering over a Folder */
.folders a:hover {
  color: white;
  background-color: rgba(191, 136, 216);
  box-shadow: 3px 3px 0 #6739a7;
}

/* Rules for the container */
.slideshow-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.slideshow-container p {
  padding: 20px;
  border-radius: 5px;
  background-color: #babef2;
  box-shadow: 3px 3px 0 rgba(191, 136, 216);
  transition: background-color 0.6s ease;
  text-align: center;
  align-self: center;
  border: 1px solid #6739a7;
}

.featured p:hover {
  background-color: rgba(191, 136, 216);
  color: white;
  box-shadow: 3px 3px 0 #6739a7;
}

/* Images for the slideshow */
.slide {
  width: 80%;
  height: auto;
  border-radius: 5px;
  border: 2px solid #6739a7;
}

.artImage {
  width: auto;
  height: 200px;
  border-radius: 5px;
  transition: background-color 0.6s ease;
  align-self: center;
  text-decoration: none;
  align-content: center;
  margin-bottom: 10px;
  border: 1px solid #6739a7;
}

.basic-text {
  color: #6739a7;
}

.basic-text:hover {
  color: #6739a7 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.backButton {
  border: 1px solid #6739a7;
  background-color: #6739a7 !important;
  box-shadow: none !important;
  color: white !important;
  display:none;
}

.pfpSide {
  border-radius: 100%;
  border: 1px solid #6739a7;
  padding: 5px;
  width: 100%;
  height: auto;
}

.basic-information {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-radius: 5px;
  margin-top: -25px;
}

.basicContent {
  color: #6739a7;
  font-size: 12px;
}

.basicInfo {
  color: rgba(191, 136, 216);
  font-size: 11px;
}

.welcome {
  font-size: 12px;
  border: 1px solid #6739a7;
  border-radius: 5px;
  padding: 5px;
  margin-top: 0px;
  margin-bottom: 10px;
}

.wip {
  font-size: 30px;
  border-radius: 5px;
  padding: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  
}

.featuredCharacters {
  margin-top: 20px;
  font-size: 12px;
  border: 1px solid #6739a7;
  border-radius: 5px;
  padding: 5px;
  width: 240px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tags {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tags p {
  color: white;
  background-color: #8e64c9;
  padding: 5px;
  border-radius: 5px;
  margin-top: -5px;
}

#overlayArt {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(103, 57, 167, 0.3);
  z-index: 1000;
  padding: 5px;
}

#overlayCharacters {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(103, 57, 167, 0.3);
  z-index: 1000;
  padding: 5px;
}


.artOverlayContainer {
  background-color: white;
  border: 1px solid #6739a7;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 3px 3px 0 rgba(191, 136, 216);
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: space-between;
}

.artOverlayContainer img {
  width: auto;
  height: 400px;
  border: 1px solid #6739a7;
  border-radius: 5px;
  margin: 5px;
}

.artOverlayInformation {
  display: flex;
  flex-direction: column;
  padding: 10px;
  width: 40%;
  height: auto;
}

.artOverlayRow {
  display: flex;
  flex-direction: row;
  margin-bottom: -20px;
  min-width: 300px;
}

.artOverlayQuestion {
  color: #6739a7;
  justify-content: flex-start;
  padding-right: 15px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.artOverlayAnswer {
  color: #8e64c9;
  justify-content: flex-end;
}

.Xbutton {
  width: 25px;
  margin-left: 10px;
}

.Xbutton p {
  transition: background-color 0.6s ease;
  background-color: #babef2;
  color: #6739a7;
  border: 1px solid #6739a7;
  box-shadow: 3px 3px 0 rgba(191, 136, 216);
  padding: 5px;
  border-radius: 5px;
  margin-left: 10px;
}

.Xbutton p:hover {
  background-color: rgba(191, 136, 216);
  color: white;
  border: 1px solid #6739a7;
  box-shadow: 3px 3px 0 #6739a7;
}

.Toyhouse-link {
  background-color: #babef2;
  color: #6739a7;
  border: 1px solid #6739a7;
  box-shadow: 3px 3px 0 rgba(191, 136, 216);
  padding: 5px;
  border-radius: 5px;
  transition: background-color 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.Toyhouse-link:hover {
  background-color: rgba(191, 136, 216);
  color: white;
  border: 1px solid #6739a7;
  box-shadow: 3px 3px 0 #6739a7;
}

.filter {
  display: flex;
  padding: 5px;
  gap: 5px;
}

.filter-row {
  display: flex;
  padding: 5px;
  gap: 5px;
  background-color: #babef2;
  color: #6739a7;
  border: 1px solid #6739a7;
  box-shadow: 3px 3px 0 rgba(191, 136, 216);
  border-radius: 5px;
  height: 50px;
  align-items: center;
}

.filter-row input {
  width: 100px;
  font-family: "Audiowide", sans-serif;
  color: #986fd3;
  border-radius: 5px;
}

.filter-row select {
  width: 100px;
  font-family: "Audiowide", sans-serif;
  color: #986fd3;
  border-radius: 5px;
}

::placeholder {
  color: rgba(191, 136, 216);
}

.filter-row option {
  width: 100px;
  font-family: "Audiowide", sans-serif;
  color: #986fd3;
  border-radius: 5px;
}

button {
  background-color: #babef2;
  color: #6739a7;
  border: 1px solid #6739a7;
  box-shadow: 3px 3px 0 rgba(191, 136, 216);
  border-radius: 5px;
  padding: 5px;
  transition: background-color 0.6s ease;
  font-family: "Audiowide", sans-serif;
  margin: 5px;
}

button:hover {
  background-color: rgba(191, 136, 216);
  color: white;
  border: 1px solid #6739a7;
  box-shadow: 3px 3px 0 #6739a7;
}

.selling {
  display: flex;
  width: 100%;
  align-items: center;
}

.pfpSelling {
  width: 20%;
  height: auto;
  object-fit: cover;
  border-radius: 100%;
  border: 2px solid #6739a7;
  margin: 5px;
}

.sell {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 5px;
  align-items: center;
}

.sell a {
  background-color: #babef2;
  color: #6739a7;
  border: 1px solid #6739a7;
  box-shadow: 3px 3px 0 rgba(191, 136, 216);
  border-radius: 5px;
  padding: 5px;
  transition: background-color 0.6s ease;
}

.sell a:hover {
  background-color: rgba(191, 136, 216);
  color: white;
  border: 1px solid #6739a7;
  box-shadow: 3px 3px 0 #6739a7;
}