html, body
{
  height: 100%;
  width: 100%
}

/* Main Page */

.top-spacer
{
  height: 10%;
}

.main-container
{
  background-color:#d41c7a;
  width: 80vw; 
  height: 75vh;
  margin: auto;
  padding: 10px;
  overflow:   hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: flex-start;
}

.mid-spacer
{
  flex-grow: 1;
  min-height: 0;
}

.logo-container
{
  width:  auto;
  height: 7%;
  min-height: 5%;
  margin: auto;
  overflow:visible;
}
.logo-container-right
{
  align-self: right;
  margin-left: auto !important;
  margin-right: 0 !important;
}
.logo-main
{
  width: 100%;
  height: 100%;
  min-height: 50px;
  margin: auto;
  display: block;
  padding-bottom: 0;

  object-fit: scale-down;
  aspect-ratio: 1 / 1;
}

.title
{
  padding-top: 0px;
  text-align: center;
  color: black;
  font-size: 3em;
  font-family: "Special Gothic Expanded One";
  user-select: none;
}
.commissions-title
{
  margin-top: 0;
  align-self: top;
}

.text-right
{
  align-self: right;
  margin-left: auto !important;
  margin-right: 1vw !important;
}

.nav-bar
{
  position:   relative;
  height: 10%;
  width:  100%;
  display:flex;
  justify-content: space-evenly;
  align-content: flex-start;
  align-items: center;
  gap: 20%;
  padding-left: 10%;
  padding-right:10%;
  flex-wrap: wrap;
  padding-bottom: 10%;

  flex-shrink: 0;
}

.nav-button
{
  font-size: clamp(1em, 3vw, 3em);
  font-family: "Cal Sans";
  text-align: center;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 20%;
  border-radius: 50px;
  background-color: transparent;
  border: 5px solid;
  border-color: white;
  transition-duration: 0.314159s;
  text-decoration: none;
  user-select: none;
}
.nav-button:hover
{
  border-color:#d41c7a;
}

.darkmode-button
{
  width: 5%;
  height: auto;
    
  background-color: black;
  position: relative;
  top: 20%
}

/* COMMISSIONS PAGE */

.commissions-container
{
  background-color: #d41c7a;
  width: 100%; 
  height: 100%;
  margin: auto;
  padding: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: flex-start; 
  /* align-items: stretch; */
  box-sizing: border-box;
}
.commissions-left
{
  width:  50%;
  display: flex;
  gap:5%;
  box-sizing: border-box;
  flex-direction: row;
  justify-content: center;
  padding-right: 10%;
}
.commissions-text-container
{
  justify-content: center;
  width: 50%;
  height: 100%;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex: none;
  flex-direction: column;
}
.commissions-text
{
  width: 100%;
  white-space: normal;
  font-size: 1.5em;
  font-family: "Cal Sans";
  color: black;
  user-select: none;
  margin-top: 0;
  margin-bottom: 0;
  align-self: right;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow-y: auto;
  white-space: pre-wrap;
}
.commissions-image
{
  display:block;
  width: auto;
  height: 100%;
}
.commissions-slider
{
  flex-basis: 1;
  flex-shrink: 1;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  background-color: black;
  border-radius: 100px;
}
.commissions-slider:hover
{
    opacity: 1;
}
/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.commissions-slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #ffffff; /* Green background */
  cursor: grab; /* Cursor on hover */
  border-radius: 40%; /* Make the slider handle circular */
}

.commissions-slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #ffffff; /* Green background */
  cursor: grab; /* Cursor on hover */
  border-radius: 40%; /* Make the slider handle circular */
}
input[type=range]
{
  writing-mode: vertical-lr;
  direction: ltr;
  vertical-align:middle
}


/* About Me Page */

.about-container
{
  width: 100%;
  height: 100%;

  display:  flex;
  flex-direction: row;
  align-items: stretch
}
.about-character-container
{
  width: 33%;
  height: 100%;
}
.C_PLACEHOLDER
{
  width: 100%;
  height: 100%;
  color: black;
  background-color: black;
}
.about-text-container
{
  width: 33%;
  height: 100%;
  padding: 10px;
}
.about-title
{
  padding: 0% !important; 
  margin: 0% !important;
}
.selectable
{
  user-select: auto !important;
}
.about-text
{
  width: 100%;
  white-space: normal;
  font-size: 1.5em;
  font-family: "Cal Sans";
  color: black;
  user-select: none;
  margin-top: 0;
  margin-bottom: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow-y: auto;
  white-space: pre-wrap;
}
.about-other-container
{
  width: 33%;
  height: 100%;
  background-color:#8d245a;

  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.about-details-container
{
  width: 100%;
  height: 55%;
  padding: 2%
}
.about-spotify-playlist
{
  width: 100%;
  height: 45%;
  padding: 2%;
}








/* Mobile Stuffs */

@media (orientation: portrait) {
  .top-spacer {
      height: 5%;
  }
  .main-container {
      width: 98vw;
      height: 90vh;
      padding: 4vw 2vw;
  }
  
  .nav-bar {
      flex-direction: column;
      align-items: center;
      gap: 50px;
      padding-left: 0;
      padding-right: 0;
      padding-bottom: 0;
      height: auto;
  }
  .nav-button {
      font-size: 2em;
      width: 100%;
      min-width: 0;
      flex-basis: auto;
  }
}

/* font stuffs */
.special-gothic-expanded-one-regular {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.cal-sans-regular {
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Animation stuffs */


.fade-in {
  animation: fadeIn 0.7s forwards;
}

.fade-out {
  animation: fadeOut 0.7s forwards;
}

/* For sliding in the title */
.slide-in {
  animation: slideIn 0.7s forwards;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}