/*TEXT*/
h1, p1 {
    font-family: Arial, Helvetica, sans-serif; color: white; 
}

h1 {
    font-size: 45px; 
}
p1 {
    font-size: 25; padding-left: 20px; 
}
/*MAIN PAGES BACKGROUND COLOR*/ 
body {
    background-color: #303030; margin: 0; 
}

/*TOP NAVBAR */
a:link {
    all: unset; cursor: context-menu; 
}
a:visited{
        all: unset; cursor: context-menu; 
}

.top-navbar {
    display: flex; max-width: 100%; align-items: center; background-color: #d60000;
}
.me-icon-left-navbar {
    padding-left: 30; padding-top: 7;  
}

.top-nav-bar-headings {
    width: 80%;  margin-left: auto; justify-content: end; padding-right: 35px; white-space: pre-line; display: flex; flex-wrap: wrap;
}

.topnavbar {
    font-family: Luminari, fantasy; font-weight: bold; color: #d60000; font-size: 20; 
    background-color: white; border: 2px solid white; border-radius: 20px; cursor: pointer; 
    text-align: center; padding: 8px 7px; margin: 3; white-space: nowrap; 
}

.topnavbar:hover, .topnavbardropgal:hover, .topnavbardropmore:hover {
    color: white; background-color: #d60000; border: 2px solid #d60000;
}

.topnavbardropgal, .topnavbardropmore {
    font-family: Luminari, fantasy; font-weight: bold; color: #d60000; font-size: 20; 
    background-color: white; border: 2px solid white; border-radius: 20px; cursor: pointer; 
    text-align: center; padding-top: 5px; padding-bottom: 7px; padding-left: 7px; padding-right: 7px;
    margin: 3; white-space: nowrap; 
    position: relative; display: inline-block;
}

/* DROP DOWN BUTTON STUFF */
.gal-dropdown {
    display: none; position: absolute; background-color: white; min-width: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 99; font-size: 20; right: 0; margin-top: 7px; border-radius: 50px;
}

.gal-dropdown a {
    color: #d60000; background-color: white; padding: 12px 16px; text-decoration: none; display: block;  font-size: 20px; 
    border-radius: 50px;
}

.gal-dropdown a:hover {
    color: white; background-color: #d60000; padding: 12px 16px; text-decoration: none; display: block;  font-size: 20px; 
    border-radius: 50px;
}

.topnavbardropgal:hover .gal-dropdown {
    display: block; 
}

.more-dropdown {
    display: none; position: absolute; background-color: white; min-width: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 99; font-size: 20; right: 0; margin-top: 7px; border-radius: 50px;
}

.more-dropdown a {
    color: #d60000; background-color: white; padding: 12px 16px; text-decoration: none; display: block;  font-size: 20px; 
    border-radius: 50px;
}

.more-dropdown a:hover {
    color: white; background-color: #d60000; padding: 12px 16px; text-decoration: none; display: block;  font-size: 20px; 
    border-radius: 50px;
}

.topnavbardropmore:hover .more-dropdown {
    display: block; 
}

/* BOTTOM COPYRIGHT THINGIE */
.bottom-runner {
    z-index: 100;  position: fixed; bottom: 0; background-color: black; color: white; width: 100%; 
}

.short-comic-covers-container, .short-comic-covers {
    display: flex;  justify-content: center; flex-wrap: wrap; align-content: center; 
}


/*COMIC SLIDESHOW STUFF*/

.comic-instructions {
    display: flex; width: 80%; padding-bottom: 15px; justify-content: center; 
}

.dev-hair:hover, .dev-joey-shopping:hover {
    transform: scale(1.1); 
}

.short-comic-flip-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Each slide takes full space but hidden by default */
.DevHaircut {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: none; /* or opacity for fade transition */
    justify-content: center;
    align-items: center;
}


/* Show active slide */
.DevHaircut.active {
    display: flex;
}

/* Images scale to fit screen */
.DevHaircut img {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-300%);
    font-size: 3em;
    color: white;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    z-index: 10;
      border-radius: 40px 40px 40px 40px ; 
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Next & previous buttons */
.prev-shop, .next-shop {
  cursor: pointer;
  position: absolute;
  margin-left: -435px;
  margin-top: -360px;    
  width: auto;
  color: white;
  font-weight: bold;
  font-size: 40px;
  transition: 0.6s ease;
  user-select: none; 
  width: 55px; 
  border-radius: 40px 40px 40px 40px ;    
  
}

/* Position the "next button" to the right */
.next-shop {
  margin-left: 380px;
}


/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8); 
}

.prev-shop:hover, .next-shop:hover {
  background-color: rgba(0,0,0,0.8); 
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

figcaption {
    font-family: Arial, Helvetica, sans-serif; padding-top: 10px; color: white; 
}


.back-button:hover {
    transform: scale(1.1); 
}



