/*TEXT*/
h1, p1 {
    font-family: Arial, Helvetica, sans-serif; 
}

h1 {
    font-size: 45px; padding-left: 5%; padding-top: 10px; 
}
p1 {
    font-size: 35; 
}
/*MAIN PAGES BACKGROUND COLOR*/ 
body {
    background-color: #d1d1d1; 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; 
}


/*PORTFOLIO PAGE*/

.etsy:hover {
    transform: scale(1.1);
}

.portfolio-page-title {
    display: flex; justify-content: center; margin: auto; 
}

.portfolio-gallery:hover {
    transform: scale(1.1);
}
.portfolio-container {
     display: flex; justify-content: center;
    flex-wrap: wrap;  
}
.responsive-portfolio , .shop-portfolio-mega {
  width: 30%; 
}
.portfolio-gallery {
    margin-left: 20px; margin-right: 20px; margin-top: 10px; margin-bottom: 10px; text-align: center; 
}
.desc {
    display: none; font-family: Arial, Helvetica, sans-serif; justify-content: center; margin: auto; align-content: center; 
}


@media only screen and (max-width: 700px) {
  .responsive-portfolio, .shop-portfolio-mega {
    width: 30%;
  }
}

@media only screen and (max-width: 500px) {
  .responsive-portfolio, .shop-portfolio-mega {
    width: 80%;
  }
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow:auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 60%; 
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding-top: 10px; padding-bottom: 100px; 
  height: 150px;
    font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 25px; 
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0.1)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* BOTTOM COPYRIGHT THINGIE */
.bottom-runner {
    position: fixed; bottom: 0; background-color: black; color: white; width: 100%; 
}
