/* General */

/* If updating CSS, remember to change style sheet link to a new version (EG: styles/trippgustincss.css?v=8) on all pages to CSS busting and force a refresh! */

* {
  font-family: "Josefin Sans", Verdana, Geneva, Tahoma, sans-serif;
  box-sizing: border-box;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.3em;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transition: .3s ease;
}

body {
  margin: 10px;
  background-color: white;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
}

a {
  color: #000369;
  transition: .2s ease;
}

p.hidden {
  opacity: 0%;
  margin: 0px;
}

summary {
  display: list-item; /* Restores the default arrow behavior */
}

hr.gradient {
  border: none;
  height: 3px;
  background: linear-gradient(to right, transparent, #5779ff, #ff4d6d, transparent);
}

/* Josefin Sans Webfont

// <weight>: Use a value from 100 to 700
// <uniquifier>: Use a unique and descriptive class name */

.jslight {
  font-weight: 300;
}

.jsmedium {
  font-weight: 450;
}

.jsbold {
  font-weight: 700;
}

.jsitalic {
  font-style: italic;
}

.jsbody {
  font-size: 1.1em;
}

/* End Webfont */

body.splash {
  margin: 0px;
  background-image: url("../images/In-Flight.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  background-position: center;
  z-index: auto;
}

div.scrollcover1 {
  position: fixed; /* Stays in place even when scrolling */
  bottom: 0; /* Anchors to bottom of viewport */
  left: 50%; /* Position midpoint at the center */
  transform: translateX(-50%); /* Shift it left by half its width for true centering */
  height: 50vh;
  width: auto;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  padding: 0px;
}

div.scroll
{
  position: relative;
  width: 100vw;
  overflow: hidden;
  z-index: 1;
  margin: 0;
  padding: 0;
}

div.m-scroll {
  background-image: url("../images/paint-texture-darker-loop.jpg");
  background-repeat: repeat;
  background-size: contain;
  background-attachment: fixed;
  overflow: hidden;
  height: 60vh;
  white-space: nowrap;
  animation: scrollText 40s infinite linear;
  margin: 0;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  width: fit-content;
}

img.scroll {
  height: 100%;
  width: auto;
}

span.scrollspan {
  display: inline-block;
  margin: 25px;
  margin-bottom: 100px;
  padding: 0;
  color: white;
  border-style: solid;
  border-color: black;
  border-width: 10px;
  border-radius: 2%;
}

@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

div.splash{
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
}

div.splash2 {
  position: fixed;
  top: 5%; /* Anchors to top of viewport */
  left: 50%; /* Position midpoint at the center */
  transform: translateX(-50%); /* Shift it left by half its width for true centering */
  overflow: auto;
}

.splashcentered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.splashscale {
  max-width: 20vw;
  font-size: 1.2vw;
}

a.splash {
  display: block; /* Make the anchor element occupy the full width and height of its parent div */
  width: 100%; /* Ensure the clickable area spans the entire div width */
  height: 100%; 
  z-index: 100;
  text-decoration: none; 
}

.growbutton {
  transition: transform 0.2s; /* Animation */
}

.growbutton:hover {
  transform: translate(-50%, 0%) scale(1.1); /* Scale up the button */
}


.whiteglow {
  filter: drop-shadow(0px 0px 2px #fff);
}

.splashfootercontainer {
  min-height: 98vh;    
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  margin-right: 20px;
}

.splashfooter {
  margin-top: auto;
}


/* Header */

div.header {
  max-width: 950px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

img.logo {
  max-width: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -10px;
  margin-bottom: -10px;
}

.logo-container {
  position: relative;
  display: block;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.logo-container img {
  display: block;
  max-width: 500px;
}

.logo-container .animated {
  position: absolute;
  top: 10px;
  left: 136px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.logo-container:hover .animated {
  opacity: 1;
  transition-delay: 0.1s;
}

/* NEW Navbar */

nav {
  padding-top: 10px;
  padding-bottom: 10px;
}

div.navbar {
  max-width: 950px;
  margin: 0 auto;
  position: sticky;  /* makes it stick */
  top: 0;            /* distance from top of viewport */
  z-index: 1000;     /* keeps it above page content */
  background-color: black;
  border-radius: 6px;
  padding: 4px;
}

div.navcenter {
  display: flex;
  justify-content: center; /* centers contents within this div */
  gap: 20px; /* optional: space between icons */
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* centers the whole group */
}

.navbar li {
  display: flex;
  justify-content: center;
  max-width: 132px;
}

.navbar li a {
  display: block;
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
  padding: 2px;
  text-decoration: none;
  transition: .2s ease-in-out;
}

.navbar li a:hover {
  background-image: none;
  transform: scale(110%);
  transition: .2s ease-in-out;
}

.navbar li.selected {
  background-image: url("../images/spacebg.jpg");
}

.navimg {
  display: block;
  width: 100%; /* adjust as needed */
  justify-content: center;
}

/* Secondary Navbar Icons (no black bar/bg) */
.navbar2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* centers the whole group */
}

.navbar2 li {
  display: flex;
  justify-content: center;
  max-width: 160px;
}

.navbar2 li a {
  display: block;
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
  padding: 2px;
  text-decoration: none;
    transition: .3s ease;
}

.navbar2 li a:hover {
  background-image: none;
  animation-name: wiggle;
  animation-duration: 0.6s;
  transition: .3s ease;
}

.naviconheaders {
  max-width: 180px;
}

.backbutton {
  max-width: 160px;
}

/* CSS Animations */

.shrink :hover {
  transform: scale(97%);
  transition: .2s ease;
}

.shrink2 :hover {
  transform: scale(90%);
  transition: .2s ease;
}

.grow :hover {
  transform: scale(108%);
  transition: .2s ease;
}

@keyframes wiggle {
    0% { transform: scale(100%) rotate(0deg); }
    20% { transform: scale(110%) rotate(3deg); }
    40% { transform: scale(110%) rotate(-3deg); }
    60% { transform: scale(110%) rotate(3deg); }
    80% { transform: scale(110%) rotate(-3deg); }
    100% { transform: scale(110%) rotate(0deg); }
}


/* Client Logos */

.clientlogocontainer {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 4px;
}

.clientlogos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;      /* center rows horizontally */
  gap: 20px;
  opacity: 0.4;
}

.clientlogos li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 150px;   /* flexible base size */
  max-width: 200px;  /* prevents giant logos */
}

.clientlogos img {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

/* Body Content */

.maintitle {
  background-image: url("../images/paint-texture-mainbg2.jpg");
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 700;
  font-size: 2em;
}

div.headerimg {
  position: relative;
  text-align: center;
  max-width: 35%;
}

h3.headerimg {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.paint-header-text {
  color: white;
  text-shadow: -2px -2px 0 #580533, 2px -2px 0 #580533, -2px 2px 0 #580533, 2px 2px 0 #580533;
  font-size: 1.5em;
  padding-bottom: 0.2em;
  white-space: nowrap; 
}

p.main {
  font-size: medium;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}

div.mainbody {
  border-radius: 6px;
  background-image: url("../images/paint-texture-mainbg.jpg");
  color: black;
  padding: 20px;
  max-width: 950px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  overflow: auto;
}

div.mainbody-short {
  border-radius: 6px;
  background-image: url("../images/paint-texture-mainbg2.jpg");
  color: black;
  padding: 20px;
  max-width: 950px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  overflow: auto;
}

div.feature {
  border-radius: 6px;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  overflow: auto;
}

div.content {
  border-radius: 6px;
  width: 100%;
  min-height: 400px;
  background-color: #ffffff;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  overflow: auto;
}

div.gamecontent {
  border-radius: 6px;
  width: 650px;
  min-height: 400px;
  background-color: white;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

div.gametext {
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
  margin: 20px;
  letter-spacing: 0;
  font-weight: bold;
}

div.news {
  border-radius: 6px;
  width: 100%;
  background-color: #99a7b2;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
}

div.contact {
  border-radius: 6px;
  width: 100%;
  background-color: #ffffff;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
}


p.contact {
  font-size: larger;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}

p.contact2 {
  font-size: medium;
  text-align: center;
}

div.contactbar {
  display: block;
  width: 60%;
  margin: auto;
  padding-left: 40px;
  padding-bottom: 20px;
}

div.textbar {
  display: block;
  padding-top: 5px;
}

p.email {
  font-size: larger;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  padding-top: 10px;
}

div.tgcformouter {
  border-radius: 6px;
  background-image: url("../images/paint-texture.png");
  padding: 10px;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: none;
  overflow: auto;
}

div.tgcforminner {
  border-radius: 6px;
  width: 100%;
  min-height: 100px;
  background-color: #ffffff;
  color: #666666;
  font-weight: bold;
  line-height: 1.5;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  overflow: auto;
}

button.tgcform {
  border-radius: 3px;
  background-image: url("../images/paint-texture.png");
  font-weight: bold;
  font-size: medium;
  color: white;
  min-width: 200px;
  min-height: 30px;
  background-repeat: no-repeat;
  background-size: 400%;
  background-position: center;
}

div.newsform {
  border-radius: 6px;
  background-image: url("../images/paint-texture.png");
  background-size: 400%;
  color: white;
  text-shadow:
    -2px -2px 0 #390837,
    2px -2px 0 #390837,
    -2px 2px 0 #390837,
    2px 2px 0 #390837;  
  padding: 10px;
  max-width: 40%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: none;
  overflow: auto;
}

button.newsform {
  border-radius: 3px;
  background-color: white;
  font-weight: bold;
  font-size: medium;
  color: black;
  width: 200px;
  max-width: 100%;
  min-height: 30px;
  background-repeat: no-repeat;
  background-position: center;
}

.bulletlist ul {
  text-align: left;
  padding-left: 1em;
}

.bulletlist li {
  padding-left: 1em;
  margin-bottom: 0.6em;
}

.footerimg {
  max-width: 50%;
  padding: 0%;
}

/* Details Button */
details .expandbutton {
  border-radius: 10px;
  background-image: url("../images/paint-texture.png");
  background-repeat: no-repeat;
  background-size: 400%;
  font-weight: bold;
  font-size: 1.1em;
  color: white;
  max-width: 350px;
  min-height: 40px;
  background-position: center;
  padding-top: 10px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

details[open] .expandbutton {
  border: solid;
  border-color: grey;
  border-width: 2px;
  background-image: none;
  color: black;
  padding-top: 9px;
}

.open-text {
  display: none;
}

details[open] .closed-text {
  display: none;
}

details[open] .open-text {
  display: inline;
}

div.contentblock {
  border-radius: 100px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url("../images/paint-texture-mainbg.jpg");
  background-clip: content-box, border-box;
  padding: 13px;
  margin: 0px;
}

/* Details Button - Gradient Version */
details .expandbutton2 {
  border: 5px solid transparent;
  border-radius: 20px;
  background: 
    linear-gradient(#fff, #fff) padding-box, /* Inner background color */
    linear-gradient(to right, #5779ff, #ff4d6d) border-box; /* Gradient border */
  background-origin: border-box;
    max-width: 350px;
  min-height: 40px;
  background-position: center;
  padding: 9px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

details[open] .expandbutton2 {
  border-color: white;
}

div.contentblock2 {
  border-radius: 50px;
  border: 5px solid transparent; /* defines border thickness */
  background:
    linear-gradient(white, white) padding-box, /* inner fill */
    linear-gradient(to right, #5779ff, #ff4d6d) border-box; /* border */
  padding: 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: -70px;
}

/* Details Button - Plain Version */
details .expandbutton3 {
  color: black;
  font-weight: bold;
  font-size: 1.1em;
  max-width: 350px;
  min-height: 40px;
  background-position: center;
  padding-top: 9px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

div.contentblock3 {
  padding: 20px;
  margin: 0px;
}

/* Gallery */

h3.comictitle {
  margin-top: 5px;
}

div.gallerythumbnail {
  border-radius: 10px;
  text-align: center;
  width: 32%;
  height: 300px;
  background-color: black;
  margin: 5px;
  float: left;
  overflow: hidden;
  display: inline;
}

div.gallerythumbnailhalf {
  border-radius: 10px;
  text-align: center;
  width: 16%;
  height: 300px;
  background-color: white;
  margin: 2px;
  float: left;
  overflow: hidden;
  display: inline;
}

div.gallerythumbnail2 {
  border-radius: 10px;
  text-align: center;
  width: 32%;
  height: 300px;
  background-color: black;
  margin: 5px;
  float: left;
  overflow: hidden;
  display: inline;
}

div.gallerythumbnailhidden {
  border-radius: 0px;
  text-align: center;
  width: 32%;
  height: 300px;
  background-color: white;
  margin: 5px;
  float: left;
  overflow: hidden;
  display: inline;
}

div.gallerythumbnailsingle {
  border-radius: 10px;
  text-align: center;
  width: 300px;
  height: 300px;
  background-color: black;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  display: block;
}

a.gallery {
  position: relative;
  z-index: 10;
}

img.fill {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*
img.thumbnail {
  opacity: 100%;
}

img.thumbnail:hover {
  opacity: 75%;
}
*/

.galleryimage {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.gallerymiddle {
  transition: .5s ease;
  opacity: 0;
  position: relative;
  transform: translate(0%, -100%);
  -ms-transform: translate(0%, -100%);
  text-align: center;
}

.gallerythumbnail:hover .galleryimage {
  opacity: 0.6;
}

.gallerythumbnail:hover .gallerymiddle {
  opacity: 1;
}

.gallerythumbnail2:hover .galleryimage {
  opacity: 0.6;
}

.gallerythumbnail2:hover .gallerymiddle {
  opacity: 1;
}

.overlaytext {
  background-color: #000000;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 16px 32px;
}

div.artlisting {
  border-radius: 6px;
  max-width: 100%;
  min-height: 170px;
  padding-top: 10px;
  padding-bottom: 40px;
  background-color: #ffffff;
  overflow: auto;
  margin: auto;
  display: block;
}

img.artlisting {
  max-width: 70%;
  height: auto;
  /* border: 1px solid #99a7b2; */
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}

img.artlisting2 {
  max-width: 50%;
  height: auto;
  /* border: 1px solid #99a7b2; */
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
  float: left;
}

img.artlisting3 {
  max-width: 46%;
  height: auto;
  /* border: 1px solid #99a7b2; */
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
  float: left;
}

img.artlistingsquare {
  max-width: 50%;
  height: auto;
  /* border: 1px solid #99a7b2; */
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}

img.artlistingwide {
  max-width: 90%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}

img.artlistingfull {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}

img.newsarticle {
  border: solid;
  border-color: grey;
  border-radius: 3%;
  padding: 10px;
}


p.artlisting {
  font-size: 1.1em;
  margin-top: 15px;
  margin-left: 5px;
  color: black;
  text-align: center;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


/* Comic Updates */

h3.comictitle {
  margin-top: 5px;
}

div.comics {
  border-radius: 6px;
  text-align: center;
  /* width: 200px; */
  width: 45%;
  height: auto;
  background-color: #99a7b2;
  padding: 10px;
  margin: 5px;
  float: left;
}

div.comicblock {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 180px;
  height: 180px;
}

div.comiclisting {
  border-radius: 6px;
  max-width: 700px;
  min-height: 170px;
  padding: 10px;
  background-color: #eeeeee;
  overflow: auto;
  margin: auto;
}

img.comiclisting {
  max-width: 150px;
  max-height: 150px;
  float: left;
  border: 1px solid #99a7b2;
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 25px;
  margin-bottom: 5px;
}

p.comiclisting {
  margin-top: 5px;
  margin-left: 5px;
  max-width: 400px;
  float: left;
  color: black;
}

div.connectfloat {
  /* max-width: 700px; */
  /* min-height: 200px; */
  padding: 0px;
  overflow: auto;
  margin: auto;
}

div.connectfloat2 {
  max-width: 600px;
  padding: 0px;
  overflow: auto;
  margin: auto;
}

img.connectfloat {
  max-width: 250px;
  max-height: 250px;
  float: left;
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 25px;
  margin-bottom: 5px;
}

p.connectfloat {
  margin-top: 5px;
  margin-left: 5px;
  /*max-width: 400px;  */
  /* float: left; */
}

img.profileimg {
  max-width: 250px;
  max-height: 250px;
  float: left;
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 25px;
  margin-bottom: 5px;
}

p.updateold {
  display: block;
  text-align: center;
  color: black;
  font-weight: bold;
  font-size: small;
}

p.updatenew {
  display: block;
  text-align: center;
  color: white;
  font-weight: bolder;
  font-size: small;
  animation: animate 1s linear infinite; 
}
@keyframes animate{ 
  0%{ 
    opacity: .5; 
  } 
  50%{ 
    opacity: 1; 
  } 
  100%{ 
    opacity: .5; 
  } 
} 

/* Social Icons */

div.socialicon {
  width: 50px;
  height: 50px;
  float: left;
  margin: 10px;
  transition: .3s ease;
}

div.socialbar {
  width: 120px;
  height: 50px;
  margin: 10px;
  float: left;
}

/* Footer */

address {
  position: sticky;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: small;
  font-style: normal;
  text-align: center;
  bottom: 10px;
  color: #b1b1b1;
}

/* Responsive layout - LARGER Browsers */
@media screen and (min-width: 1920px) {

div.scrollcover1 {
    position: fixed; /* Stays in place even when scrolling */
  bottom: 0; /* Anchors to bottom of viewport */
  left: 50%; /* Position midpoint at the center */
  transform: translateX(-50%); /* Shift it left by half its width for true centering */
    width: 100vw;   /* forces full viewport width ONLY on larger browsers*/
    height: auto;   /* let height scale proportionally */
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  padding: 0px;

}

div.scrollcover1 img {
  width: 100%;
  height: auto;
}

}

/* Responsive layout - Smaller Browsers */
@media screen and (max-width: 1200px) {

.splashscale {
  max-width: 30vw;
  font-size: 2vw;
}
}


/* Responsive layout - Smaller Browsers */
@media screen and (max-width: 920px) {

  img.artlisting {
    max-width: 100%;
  }

  img.artlistingwide {
    max-width: 100%;
  }

  img.artlisting2 {
    max-width: 40%;
  }

  img.artlisting3 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  div.artlisting {
    overflow: hidden;
  }

  div.gamecontent {
    width: 100%;
  }

  /* remove for 3+ comics? */
  div.comics {
    width: 47%;
  }

  img.logo {
    max-width: 100%;
    float: none;
  }

  div.gallerythumbnail {
    width: 30%;
    height: 200px;
  }

      div.gallerythumbnailhidden {
    width: 30%;
    height: 200px;
  }

  div.gallerythumbnail2 {
    width: 30%;
    height: 200px;
  }

  div.gallerythumbnailhalf {
    width: 16%;
    height: 200px;
  }

  div.socialicon {
    width: 50px;
    height: auto;
    margin: 5px;
  } 

  img.socialicon {
    width: 50px;
    height: auto;
    margin: 5px;
    transition: .3s ease;
  }

  div.socialbar {
    width: 120px;
    height: auto;
    margin: 5px;
  }

  img.socialbar {
    width: 120px;
    height: auto;
    margin: 5px;
  }

  div.contactbar {
    width: 70%;
    margin: auto;
    overflow: auto;
  }

  .gallerymiddle {
    transform: translate(0%, -100%);
    -ms-transform: translate(0%, -100%);
  }

  .overlaytext {
    background-color: #000000;
    color: white;
    font-weight: bold;
    font-size: 12px;
    padding: 12px 24px;
  }
  
div.navcenter {
  gap: 0px; /* optional: space between icons */
}

}

/* Responsive layout - Mobile Devices */
@media screen and (max-width: 700px) {

  img.logo {
    max-width: 30%;
    float: none;
  }

  .logo-container .animated {
  left: 175px;
}

.splashscale {
  max-width: 50vw;
  font-size: 3.5vw;
}

div.headerimg {
  position: relative;
  text-align: center;
  max-width: 50%;
}

  div.socialicon {
    width: 40px;
    height: auto;
    margin: 5px;
  } 

  img.socialicon {
    width: 40px;
    height: auto;
    margin: 5px;
  }
  
  div.socialbar {
    width: 100px;
    height: auto;
    margin: 5px;
  }

  img.socialbar {
    width: 100px;
    height: auto;
    margin: 5px;
  }

div.contactbar {
  width: 90%;
  margin: auto;
  padding-left: 0px;
}

div.tgcformouter {
  max-width: 100%;
  width: 100%;
  margin: 0%;
}

.footerimg {
  max-width: 100%;
  padding: 0%;
}

}

/* Responsive layout - Mobile Devices */
@media screen and (max-width: 600px) {

h3.headerimg {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}

  img.profileimg {
    float: none;
    display: block;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  
div.newsform {
  max-width: 100%;
}

.maintitle {
  font-size: 1.5em;
}

}


/* Responsive layout - Mobile Devices */
@media screen and (max-width: 500px) {

body {
  margin: 5px;
}

nav {
  padding-top: 5px;
  padding-bottom: 5px;
}

p.main {
  font-size: small;
}

.splashscale {
  max-width: 70vw;
  font-size: 5.5vw;
}

div.contact {
  padding: 10px;
}

div.headerimg {
  position: relative;
  text-align: center;
  max-width: 60%;
}

h3.headerimg {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}

  div.content {
    padding-left: 10px;
    padding-right: 10px;
  }

    div.contentblock {
    padding: 10px;
    border-radius: 60px;
  }

  div.contentblock2 {
    margin-left: 5px;
    margin-right: 5px;
  }

  div.mainbody {
    padding: 10px;
  }

 
  div.socialicon {
    width: 40px;
    height: auto;
    margin: 5px;
  } 

  img.socialicon {
    width: 40px;
    height: auto;
    margin: 5px;
  }

  div.contactbar {
    width: 100%;
    margin: auto;
    padding-left: 0px;
  }

  
  div.socialbar {
    width: 100px;
    height: auto;
    margin: 5px;
  }

  div.textbar {
    padding-top: 0px;
  }

  img.socialbar {
    width: 100px;
    height: auto;
    margin: 5px;
  }

  .column.side {
    margin-left: 10px;
    padding-left: 10px;
    margin-right: auto;
  }

  div.comics {
    width: 100%;
  }

  div.comics {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  div.comicblock {
    margin-right: auto;
    margin-left: auto;
  }

  img.comiclisting {
    display: block;
    float: none;
    margin-right: auto;
    margin-left: auto;
  }

  p.comiclisting {
    font-size: small;
  }

  div.gallerythumbnail {
    width: 30%;
    height: auto;
  }

    div.gallerythumbnailhidden {
    width: 30%;
    height: auto;
  }

  div.gallerythumbnail2 {
    width: 60%;
    height: auto;
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }

  div.gallerythumbnailhalf {
    display: none;
  }

  div.illustrationthumbnail {
    width: 30%;
    height: 130px;
  }

  .gallerymiddle {
    transform: translate(0%, -100%);
    -ms-transform: translate(0%, -100%);
  }

  .overlaytext {
    background-color: #000000;
    color: white;
    font-weight: bold;
    font-size: 10px;
    padding: 10px 20px;
  }

  img.artlisting2 {
    max-width: 42%;
    margin: 5px;
  }

  img.artlistingsquare {
    max-width: 80%;
  }

  p.email {
  font-size: medium;
}

h2.connect {
  margin-top: 0px;
}

}

/* Responsive layout - Mobile Devices */
@media screen and (max-width: 400px) {

.splashscale {
  max-width: 80vw;
  font-size: 6vw;
}


div.headerimg {
  position: relative;
  text-align: center;
  max-width: 70%;
}

h3.headerimg {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
}

  div.gallerythumbnail {
    width: 80%;
    height: auto;
    float: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  }

  div.gallerythumbnail2 {
    width: 80%;
    height: auto;
    float: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  }

  div.gallerythumbnailhidden {
    width: 0%;
    height: 1px;
  }

}

/* Responsive layout - Mobile Devices */
@media screen and (max-width: 350px) {

body {
  margin: 2px;
}

p.main {
  font-size: x-small;
}

.splashscale {
  max-width: 90vw;
  font-size: 7vw;
}

div.headerimg {
  position: relative;
  text-align: center;
  max-width: 70%;
}

  div.mainbody {
    padding: 7px;
  }


  div.contact {
    padding: 5px;
  }
  

    p.email {
  font-size: small;
}

h2.connect {
  font-size: larger;
}

h3.headerimg {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: medium;
}

  p {
  font-size: small;
}

}