<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  background-color: #eeeeee;
  font-family: 'Josefin Sans', sans-serif;
}
h2 {
  font-weight: 800;
}
h3 {
  font-weight: 800;
}
h4 {
  font-weight: 800;
}
.btn {
  font-weight: 800;
}
.btn-info {
  color: #ffffff;
}
.canvas-container {
  text-align: center;
}
/* center the gpt-canvas, do not use position absolute */
.gpt-canvas {
  text-align: center;
}
.gpt-image {
  width: 100%;
  height: auto;
}
.stats-data-container {
  /* display the elements in flex in a row but wrap */
  flex-wrap: wrap;
  /* center the elements */
  justify-content: space-around;
  align-items: flex-start;
}
.stats-link {
  /* ellipsis the text */
  overflow: hidden;
  text-overflow: ellipsis;
}


/* make some nice sized info bubbles */
.gpt-stats {
  font-size: 16px;
  padding: 10px;
  border-radius:10px;
  background-color: #eeeeee;
  height: fit-content;
  margin-top: 2px;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gpt-textarea {
  width: 100%;
  font-size: 20px;
}

.gpt-customize button:active {
  background-color: #4CAF50;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
.gpt-customize-button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
/*
&lt;!-- create a button for frame, square, circle, hexagon, clear, white, black, and gray --&gt;
&lt;!-- add a unique id prefix with gpt-customize and class to each button along with a shared class for each button --&gt;
create a unique class to apply to the canvas for each button id
*/
.gpt-customize-frame {
  border: 0px!important;
}
.gpt-customize-square {
  height: 512px;
  width: 512px;
  border-radius: 100px;
}
.gpt-customize-circle {
  border-radius: 50%;
  height: 512px;
  width: 512px;
}
.gpt-customize-hexagon {
  border: 0px!important;
  -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}
.gpt-customize-clear {
  background-color: none;
}
.gpt-customize-white {
  background-color: white;
}
.gpt-customize-black {
  background-color: black;
}
.gpt-customize-gray {
  background-color: gray;
}
.gpt-title {
  font-weight: 800;
}
.gpt-title a {
  color: var(--bs-body-color);
}
html.dark .gpt-title a {
  color: var(--bs-body-color-alt);
}

.google-ads-div {
  height: 512px;
  width: 512px;
  max-width: 512px;
  max-height: 512px;
  min-width: 512px;
  min-height: 512px;
  background-color: #ff0000;
}
.canvas-container-div {
  text-align: -webkit-center;
}
.canvas-div {
  max-width: 552px;
  max-height: 552px;
  border: 20px outset #fefefe;
  /* set border outset top color to a lighter gray */
  border-top-color: #e5e5e5;
  border-left-color: #e5e5e5;
  background-color: #cccccc;
  margin-bottom: 10px;
  text-align: center;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.hidden {
  display: none;
}
.drawgpt-nav {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  background-color: #eeeeee;
}
h1.navbar-title {
  font-weight: 800;
  text-decoration: none;
  color: #212529;
  margin: 0px;
  font-size: 2.0rem;
}

.drawgpt-nav a {
  text-decoration: none;
}
.link-no-style {
  text-decoration: none;
  color: var(--bs-body-color);
}
nav.navbar {
  background-color: #eeeeee;
}
.navbar-title-image {
  max-height: 48px;
  vertical-align: middle;
  margin-top: -12px;
}
.navbar-nav {
  flex-direction: row;
}
.navbar-title
.navbar-img {
  max-height: 50px;
  vertical-align: middle;
}

.btn-help {
  border: none;
  font-size: 1.5em;
}
button.gpt-customize {
  margin: 10px;
  padding: 10px;
}

.no-underline {
  text-decoration: none;
}

.title-dark {
  width: 100%;
  padding: 20px;
  /* exactly like btn-dark */
  color: #222222;
  background-color: lightgray;
  font-weight: 900;
  font-size: 1.5em;
  text-transform: uppercase;
  text-decoration: none;
}
html.dark .title-dark {
  /* slightly lighter than btn-dark */
  background-color: #454d55;
}
/* after*/
.title-dark:before {
  /* if there is a data-after attribute, use that as the content */
  content: attr(data-before);
  /* should always show on the left side of the title */
  float: left;
}

.title-dark-slim {
  padding-top: 5px;
  padding-bottom: 5px;
}



/* Define the grid container */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(512px, 1fr));
  grid-gap: 20px;
}
/* Define the grid items
.masonry-grid &gt; div {

}
*/

.prompt-button-container {
  margin: 0px;
}


#comparison-container button {
  font-size: 24px;
}


/* Container styling */
.chat-container {

}

/* Avatar styling */
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

.avatar.user-avatar {
  background: #ccc;
}

.avatar.bot-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Speech bubble styling */
.speech-bubble {
  position: relative;
  padding: 12px 16px;
  border-radius: 15px;
  background: #f1f1f1;
  font-size: 16px;
  color: #333;
  flex: 1;
  max-width: 100%;
}

.user-bubble {
  background: #fff;
  border: 2px solid var(--bs-secondary);
}

.bot-bubble {
  background: #fff;
  border: 2px solid var(--bs-secondary);
}

/* Arrow styling */
.user-bubble::after,
.bot-bubble::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.user-bubble::after {
  top: 10px;
  right: -10px;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--bs-secondary);
}

.user-bubble::before {
  content: "";
  position: absolute;
  top: 11px;
  right: -8px;
  border-style: solid;
  border-width: 9px 0 9px 9px;
  border-color: transparent transparent transparent #fff;
}

.bot-bubble::after {
  top: 10px;
  left: -10px;
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--bs-secondary) transparent transparent;
}

.bot-bubble::before {
  content: "";
  position: absolute;
  top: 11px;
  left: -8px;
  border-style: solid;
  border-width: 9px 9px 9px 0;
  border-color: transparent #fff transparent transparent;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .speech-bubble {
    font-size: 14px;
    padding: 10px 14px;
  }

  .avatar {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .user-bubble::after,
  .user-bubble::before,
  .bot-bubble::after,
  .bot-bubble::before {
    border-width: 8px 0 8px 8px;
  }

  .user-bubble::after {
    right: -8px;
    border-width: 8px 0 8px 8px;
  }

  .user-bubble::before {
    right: -6px;
    border-width: 7px 0 7px 7px;
  }

  .bot-bubble::after {
    left: -8px;
    border-width: 8px 8px 8px 0;
  }

  .bot-bubble::before {
    left: -6px;
    border-width: 7px 7px 7px 0;
  }
}


















.commands-title {
  display: flex;
  justify-content: space-between
}

.commands {
  max-height: 600px;
  overflow-y: scroll;
  overflow-x: scroll;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.chatgpt {
  border-bottom: 1px solid #cccccc;
}

.faq {
  cursor: pointer;
}

.faq h4 {
  text-align: center;
  font-weight: 800;
  font-size: 1.1em;
  /* all uppercase */
  text-transform: uppercase;
}

.faq p {
  display: none;
}

.faq-selected p {
  display: block;
}

.faq h4,
.faq p {
  pointer-events: none;
}

html.dark .hljs-section,
html.dark .hljs-title{
  color: #ccccff;
}

html.dark .hljs-comment {
  color: #ffffcc;
}

html.dark .hljs-deletion,
html.dark .hljs-number,
html.dark .hljs-quote,
html.dark .hljs-selector-class,
html.dark .hljs-selector-id,
html.dark .hljs-string,
html.dark .hljs-template-tag,
html.dark .hljs-type {
  color: #ffcccc;
}

html.dark .hljs-literal {
  color: #ccffff;
}

/*
create a p that has a light gray background and round corners
force the p to be 90% of the width of the parent div
*/
.chatgpt {
  font-size: 18px;
  padding: 10px;
  margin: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  width: 95%;
}

/* force the p to have the text "me: " before it */
.chatgpt-me:before {
  content: "me: ";
  font-weight: 800;
}

.chatgpt-bot:before {
  content: "ChatGPT: ";
  font-weight: 800;
}

.modal-adsense-cache {
  width: 300px;
  height: 300px;
}

.modal-adsense-donate-image {
  width: 100%;
  height: auto;
}


.footer-title, 
.footer-title:hover,
.footer-title:active {
  font-weight: 800;
  text-decoration: none;
  color: var(--bs-body-color);
  text-decoration: none;
}
.footer-title h1 {
  font-weight: 800;
}

html.dark .footer-title, 
html.dark .footer-title:hover,
html.dark .footer-title:active {
  color: var(--bs-body-color-alt);
}
.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* a class for a grid of 3 columns named footer-sample-container */
.footer-sample-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.footer-sample-text {
  font-size: 18px;
  padding: 10px;
  text-align: center;
}
/* footer sample image */
.footer-sample-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#gpt-settings {
  width: 100%;
}

.customize-container {
  background-color: #fefefe;
  border-radius: 10px;
}
.btn-topform {
  font-weight: 800;
  width: 100%;
  line-height: 30px;
  font-size: 30px;
}
.form-control-container {
  padding: 2px;
}
.form-control-text-container {
  text-align: center;
  margin-bottom: -20px;
}
.btn-draw {
  /* make a really cool rainbow button */
  color: #ffffff;
  background: linear-gradient(135deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
  /* give the text a white drop shadow */
  text-shadow: 0px 0px 8px #000000;

}
.btn-draw:hover,
.btn-draw:active {
  color: #ffffff;
  text-shadow: 0px 0px 12px #000000;
  background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
}


.btn-modal-content {
  display: block;
  width: 100%;
}
.modal-adsense-button-div {
  padding: 10px;
}


.mint-stat-div {
  margin: 10px;
  border-radius: 10px;
  font-size: 18px;
  padding: 5px;
}
.mint-status-dynamic {
  text-align: center;
}
.mint-plus,
.mint-minus {
  font-size: 36px;
}     
.mint-amount-input {
  font-size: 30px;
  text-align: center;
  width: 50%;
  font-weight: 800;
} 
.mint-start-button {
  font-size: 24px;
  font-weight: 800;
}

.mint-featurettes {
  margin: 0px;
}

.featurette {
  width: 100%;
  border-radius: 10px;
  padding: 20px;
  margin: 0px;
}



/* under 1020px */
@media (max-width: 1200px) {
  .commands-container {
      margin-top: 0px;
  }
  .gpt-stats {
      width: 100%;
  }
  .masonry-grid {
      grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}

/* under 550px */
@media (max-width: 550px) {
  .commands-container {
      margin-top: 0px;
  }
  #gpt-canvas {
      width: 100%;
  }

  .form-control-text-container {
      font-size: 12px;
  }
  .btn-topform {
      font-size: 20px;
      line-height: 20px;
      padding: 10px;
  }
  .btn-draw {
      padding-left: 2px;
  }
  .footer-copyright {
    flex-flow: column;
  }
  .navbar-nav {
    flex-direction: column;
  }
  .navbar-nav li button {
    width:100%;
  }
  .mobile-hide {
    display: none;
  }

  .navbar-title-image {
    max-height: 36px;
    vertical-align: middle;
    margin-top: -12px;
  }

  .drawgpt-nav .navbar-toggler {
    padding: 3px;
    font-size: 16px;
    color: #000000;
  }

  .navbar-button-container {
    font-size: 16px;
  }

  .btn-help {
    padding: 3px;
  }

  .form-control-text-container {
    text-align: center;
  }
}

@media (min-width: 576px) {
  .modal-dialog {
      max-width: 550px;
  }
}

@media (min-width: 650px) {
  .modal-dialog {
      max-width: 600px;
  }
}

.footer-container {
    margin-top: 20px;
    padding-top: 20px;
    border-radius: 10px;
}

.footer-title-link {
    font-weight: 800;
}
.footer-title-text {
    font-size: 18px;
}

</pre></body></html>