/* RESET & FONTS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  cursor: auto;
}

@font-face {
  font-family:'KeplerStdRegular';
  src: url(KeplerStdRegular.otf);
}

/* Remove all unwanted browser spacing and borders */
body, html {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: #000;
}

/* BODY */
body {
  font-family: 'Poppins', 'KeplerStdRegular', 'Times New Roman', serif;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
}

/* Anchor base styles */
a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, p {
  margin: 10px 0;
}

.textDiv {
  display: flex;
  text-align: center;
  justify-content: center;
  align-content: center;
  padding: 0 40px;
  width: 100%;
}

.gradient {
  background: linear-gradient(-45deg, #ab1215, #000, #ab1215, #000);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 2px #fff solid;
  border-bottom: 2px #fff solid;
}

.gradient2 {
  background: linear-gradient(-45deg, #ffbf00, #000, #ffbf00, #000);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  text-shadow: 2px 1px 3px black;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 50px;
  border-top: 2px #fff solid;
  border-bottom: 2px #fff solid;
}

@media (min-width: 1400px){
#hide {
    opacity: 0%;
    width: 1px;
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 1400px) {
  .gradient2 {
    gap: 0;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.text {
  color: #fff;
  font-size: 1.5em;
  font-weight: 300;
}

.review {
  color: #fff;
  font-size: 1.1em;
  vertical-align: middle;
  font-style: italic;
  align-content: space-evenly;

}

.homeImgMain {
  border: 2px white solid;
  width:95%;
  object-fit: cover;
  overflow: hidden;
  display: flex;
  margin: auto;
}

.center {
  width: 100%;
  align-content: center;
  justify-content: center;
  text-align: center;
  display: flex;
  margin: auto;
  padding: 10px;
}

/* NAVBAR (Responsive, Polished, No Overlap) */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #000;
  border-bottom: 2px solid #fff;
  padding: 0;
  min-height: 72px;
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.navlogo {
  width: 100px;
  border-radius: 60px;
  transition: 0.2s;
  margin-right: 32px;
  flex-shrink: 0;
}

.navlogo:hover {
  cursor: pointer;
  border-radius: 60px;
  border: 4px solid #fff;
  background-color: #ab1215;
}

.navbar-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 28px;
}

.navbar-links a,
.navbar-links .newsA {
  color: #fff;
  font-family: 'Poppins', 'KeplerStdRegular', 'Times New Roman', serif;
  letter-spacing: 1px;
  font-size: 1.6em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
  padding: 8px 10px;
  border-radius: 18px;
  background: none;
  display: flex;
  align-items: left;
  justify-content: left;
  position: relative;
  white-space: nowrap;
}

.navbar-links a.currentPage {
  color: #ab1215;
  background: none;
}

.navbar-links a:hover,
.navbar-links .newsA:hover {
  color: #ab1215;
}

.newsA .newsBtn {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #000 !important;
  border-radius: 30px;
  padding: 8px 22px !important;
  transition: 0.2s;
  display: flex !important;
  align-items: center;
  font-size: 0.8em;
}

.newsA:hover .newsBtn:hover {
  background: #ab1215 !important;
  color: #fff !important;
}

.navbar .icon {
  display: none;
  font-size: 2em;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 2001;
}

/* Hamburger Menu (mobile/low width) */
@media (max-width: 1050px) {
  .navbar-inner,
  .navbar {
    padding: 0 10px;
  }
  .navbar-links {
    gap: 12px;
    font-size: 1.08em;
  }
  .navlogo {
    width: 80px;
    margin-right: 10px;
  }
  .newsA {
    padding: 7px 14px !important;
    font-size: 1em;
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    min-height: unset;
    padding: 0 !important;
    margin: 0 !important;
  }
  .navbar-inner {
    flex-direction: row;
    padding: 0 8px;
    width: 100%;
    min-height: 54px;
  }
  .navlogo {
    margin-right: 6px;
    width: 60px;
  }
  .navbar-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    background: #000;
    z-index: 1200;
    box-shadow: 0 4px 18px rgba(0,0,0,0.6);
    padding: 16px 0 20px 0;
    gap: 14px;
    border-bottom: 2px solid #ab1215;
    margin: 0;
  }
  .navbar.responsive .navbar-links {
    display: flex;
  }
  .navbar .icon {
    display: block;
    position: absolute;
    right: 18px;
    top: 16px;
    z-index: 2001;
  }
  .newsA {
    margin-left: 0;
    width: 92vw;
    justify-content: center;
    margin-top: 10px;
  }
}



/* HEADER */
.header {
  text-align: center;
  max-height: 800px;
  overflow: hidden;
}

.headerImg > img {
  width: 100%;
  display: flex;
}

.headerImg > video {
  width: 100%;
  display: flex;
}

.headerImg {
  width: 100%;
  overflow: hidden;
}

#aboutHead {
  width: 100%;
  height: 200px;
  background-image: url(images/aboutHead.png);
  background-repeat: no-repeat;
  background-size: cover;
  align-content: center;
  border-bottom: 2px white solid;
  vertical-align: middle;
}

#showHead {
  width: 100%;
  height: 200px;
  background-image: url(images/showHead.png);
  background-repeat: no-repeat;
  background-size: cover;
  align-content: center;
  border-bottom: 2px white solid;
}

#galleryHead {
  width: 100%;
  height: 200px;
  background-image: url(images/galleryHead.png);
  background-repeat: no-repeat;
  background-size: cover;
  align-content: center;
  border-bottom: 2px white solid;
}

#contactHead {
  width: 100%;
  height: 200px;
  background-image: url(images/contactHead.png);
  background-repeat: no-repeat;
  background-size: cover;
  align-content: center;
  border-bottom: 2px white solid;
}

/* Sections */

section {
  padding: 0px 20px;
  text-align: center;
}

hr {
  display: flex;
  color: #fff;
  opacity: 50%;
  width: 80%;
  align-items: center;
  margin: auto;
}

.section-divider {
  padding: 10px 20px;
  background: #35654d;
  text-align: center;
  border-top: solid #ffffff 2px;
  border-bottom: solid #ffffff 2px;
}

.divider-title {
  font-size: 2em;
  font-weight: 300;
  color: #ffffff;
}

.section-title, .rockTitle {
  font-size: 3.7em;
  font-weight: 300;
  color: #fff;
}

.section-subheading {
  font-size: 2em;
  font-weight: 300;
  color: #fff;
}

/* About Section */

.responsiveG {
  width: 16%;
  padding: 1% 1%;
  margin-top: 6px;
}

/* Image Gallery (about section)*/

            div.gallery {
              border: 2px solid #fff;
              background: black;
            }

            div.gallery img {
              width: 100%;
            }

        @media only screen and (max-width: 1100px) {
          .responsiveG {
           width: 42%; 
           margin: 5px;
          }
       }
            /*Links*/
            .gOption {
              color: #fff;
              font-size: 2.2em;
            }

            .gOptionLink {
              color: #fff;
              transition: 0.2s;
              padding: 0 100px;
            }

            .gOptionLink:hover {
              color: #ab1215;
            }

/* Animated text strip */
#animated-text-strip .marquee {
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  max-width: none;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

#animated-text-strip {
  background:black;
  padding: 1rem 0;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  overflow: hidden;
}
.marquee {
  font-family: 'Poppins';
  font-size: 2rem;
  text-transform: uppercase;
  color: white;
  opacity: 50%;
}


/* Social and footer */
.footer {
  background: #000;
  color: #fff;
  padding: 40px 0 16px 0;
  border-top: 2px solid #fff;
  text-align: center;
  width: 100%;
  font-size: 0.8em;

}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 18px;
}

.social-grid-about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .social-grid-about {
    margin: 0;
    padding: 0;
    gap: 0;
  }
}

.social-img img {
  width: 50px;
  object-fit: contain;
  height: 50px;
  padding: 2px;
  transition: 0.22s;
}

.social-img img:hover {
  cursor: pointer;
  border-radius: 20px;
  border: 2px solid #fff;
}

      .social-img-insta img {
        width: 100px;
        object-fit: contain;
        height: 100px;
        transition: 0.2s;
      }

      .social-img-insta img:hover {
        cursor: pointer;
        border-radius: 20px;
        border: 4px solid #fff;
        background: #C13584;
      }
      .social-img-face img {
        width: 100px;
        object-fit: contain;
        height: 100px;
        transition: 0.2s;
      }

      .social-img-face img:hover {
        cursor: pointer;
        border-radius: 20px;
        border: 4px solid #fff;
        background: #1877F2;
      }
      .social-img-tik img {
        width: 100px;
        object-fit: contain;
        height: 100px;
        transition: 0.2s;
      }

      .social-img-tik img:hover {
        cursor: pointer;
        border-radius: 20px;
        border: 4px solid #fff;
        background: #FE2C55;
      }
      .social-img-you img {
        width: 100px;
        object-fit: contain;
        height: 100px;
        padding: 5px;
        transition: 0.2s;
      }
 
      .social-img-you img:hover {
        cursor: pointer;
        border-radius: 20px;
        border: 4px solid #fff;
        background: #FF0000;
      }
      .social-img-bands img {
        width: 100px;
        object-fit: contain;
        height: 100px;
        padding: 5px;
        transition: 0.2s;
      }

      .social-img-bands img:hover {
        cursor: pointer;
        border-radius: 20px;
        border: 4px solid #fff;
        background: #00CEC8;
      }

      .social-img-patre img {
        width: 100px;
        object-fit: contain;
        height: 100px;
        padding: 5px;
        transition: 0.2s;
      }

      .social-img-patre img:hover {
        cursor: pointer;
        border-radius: 20px;
        border: 4px solid #fff;
        background: #f96854;
      }

/* Responsive layout */
@media screen and (max-width: 800px) {
  .social-grid {
    gap: 10px;
  }
      .social-img-insta img {
        width: 60px;
        height: 60px;
      }

      .social-img-face img {
        width: 60px;
        height: 60px;
      }

      .social-img-tik img {
        width: 60px;
        height: 60px;
      }
      .social-img-you img {
        width: 60px;
        height: 60px;
      }
      .social-img-bands img {
        width: 60px;
        height: 60px;
      }
      .social-img-patre img {
        width: 60px;
        height: 60px;
      }
}


/* Gallery image grid */
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 4px;
}

.about-text {
  margin: 0 auto;
}

.rowAbout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #ab1215;
  text-align: center;
}

/* Create four equal columns that sits next to each other */
/*Image Gallery*/
.column {
  flex: 33%;
  max-width: 33%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  border: 2px white solid;
  transition: 0.2s;
}

.column img:hover {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  border-radius: 7px;
  border: 2px #ab1215 solid;
  transform: scale(1.1);
}


/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1000px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}
/*Videos Gallery*/

.column-v {
  flex: 50%;
  max-width: 50%;
  padding: 0 4px;
}

.column-v iframe {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px white solid;
  transition: 0.2s;
}

.homeframe iframe {
  margin-top: 8px;
  width: 100%;
  aspect-ratio:  9 / 16;
}

.column iframe:hover {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  border-radius: 7px;
  border: 2px #ab1215 solid;
  transform: scale(1.1);
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column-v {
    flex: 100%;
    max-width: 100%;
  }
  .gOptionLink {
  padding: 0 40px;
  }
}

/* Responsive layout - makes the 2 columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column-v {
    flex: 100%;
    max-width: 100%;
  }
  .gOptionLink {
  padding: 0 20px;
  }
}

/* Create Three equal columns that sits next to each other */
/*Image Gallery*/
.column-t {
  vertical-align: middle;
  flex: 33%;
  max-width: 33%;
  padding: 0 4px;
  color: #fff;

}

.column-t p {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}


/* Responsive layout - makes a 1 column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column-t {
    flex: 100%;
    max-width: 100%;
  }
}

/* Responsive layout - makes the 1 columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column-t {
    flex: 100%;
    max-width: 100%;
  }
}

/* Contact form basic style */
.contact-form input,
.contact-form textarea {
  width: 80%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1.1em;
  font-family: inherit;
  resize: none;
}

.contact-form button {
  background: #ab1215;
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-size: 1.1em;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.18s;
  font-weight: bold;
}

.contact-form button:hover {
  background: #fff;
  color: #ab1215;
  border: 2px solid #ab1215;
}
/* Other */

.show-div {
        justify-content: center;
      }

            /* 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 */
            .modal-content {
              background-color: white;
              margin: 39px auto;
              border: 2px solid #fff;
              animation-name: zoom;
              animation-duration: 0.6s; 
            }
            }
            @keyframes zoom {
              from {transform: scale(0.1)} 
              to {transform: scale(1)}
            }

          .modal-content-news {
            background: #111;
            margin: auto;
            padding: 30px;
            border: 3px solid #ab1215;
            width: 90vw;
            max-width: 500px;
            border-radius: 18px;
            color: #fff;
            box-shadow: 0 6px 24px #000;
          }

          #caption {
            display: flex;
            flex-wrap: wrap;
            font-size: 1.1em;
            color: #fff;
            padding-bottom: 300px; /* Location of the box */
              left: 0;
              
          }

          button.modalbtn {
            color: #fff;
            font-family: 'Poppins';
            font-size: 1.1em;
            background-color: #000;
            border: none;
           }

                    #myBtn1 {
                      transition: 0.2s;
                    }

                    #myBtn1:hover {
                      transform: scale(1.1);
                    }

                     #myBtn2 {
                      transition: 0.2s;
                    }

                    #myBtn2:hover {
                      transform: scale(1.1);
                    }

                     #myBtn3 {
                      transition: 0.2s;
                    }

                    #myBtn3:hover {
                      transform: scale(1.1);
                    }

                     #myBtn4 {
                      transition: 0.2s;
                    }

                    #myBtn4:hover {
                      transform: scale(1.1);
                    }

                     #myBtn5 {
                      transition: 0.2s;
                    }

                    #myBtn5:hover {
                      transform: scale(1.1);
                    }

                     #myBtn6 {
                      transition: 0.2s;
                    }

                    #myBtn6:hover {
                      transform: scale(1.1);
                    }

            .close1 {
              position: absolute;
              top: 110px;
              right: 15px;
              color: #fff;
              font-size: 40px;
              font-weight: bold;
              transition: 0.3s;
            }

            .close1:hover,
            .close1:focus {
              color: #ab1215;
              text-decoration: none;
              cursor: pointer;
            }

            .close2 {
              position: absolute;
              top: 110px;
              right: 15px;
              color: #fff;
              font-size: 40px;
              font-weight: bold;
              transition: 0.3s;
            }

            .close2:hover,
            .close2:focus {
              color: #ab1215;
              text-decoration: none;
              cursor: pointer;
            }

            .close3 {
              position: absolute;
              top: 110px;
              right: 15px;
              color: #fff;
              font-size: 40px;
              font-weight: bold;
              transition: 0.3s;
            }

            .close3:hover,
            .close3:focus {
              color: #ab1215;
              text-decoration: none;
              cursor: pointer;
            }

            .close4 {
              position: absolute;
              top: 110px;
              right: 15px;
              color: #fff;
              font-size: 40px;
              font-weight: bold;
              transition: 0.3s;
            }

            .close4:hover,
            .close4:focus {
              color: #ab1215;
              text-decoration: none;
              cursor: pointer;
            }

            .close5 {
              position: absolute;
              top: 110px;
              right: 15px;
              color: #fff;
              font-size: 40px;
              font-weight: bold;
              transition: 0.3s;
            }

            .close5:hover,
            .close5:focus {
              color: #ab1215;
              text-decoration: none;
              cursor: pointer;
            }

            .close6 {
              position: absolute;
              top: 110px;
              right: 15px;
              color: #fff;
              font-size: 40px;
              font-weight: bold;
              transition: 0.3s;
            }

            .close6:hover,
            .close6:focus {
              color: #ab1215;
              text-decoration: none;
              cursor: pointer;
            }

            .closeN {
              color: #fff;
              float: right;
              font-size: 44px;
              font-weight: bold;
              cursor: pointer;
            }

            .closeN:hover,
            .closeN:focus {
              color: #ab1215;
              text-decoration: none;
              cursor: pointer;
            }



@media (max-width: 600px) {
  .modal-content-news {
    padding: 10px;
    width: 98vw;
    max-width: 98vw;
  }
}

/* Miscellaneous fixes */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Utility: Remove unwanted scrollbars in nav */
.navbar::-webkit-scrollbar,
.navbar-inner::-webkit-scrollbar {
  display: none;
}

/* Form stuff */

form {
  font-family: "Poppins";
  margin: auto;
}

.textAboutDiv {
  display: flex;
  text-align: center;
  justify-content: center;
  align-content: center;
  padding: 0 40px;
  width: 100%;
}

p .footerText {
  font-size: 3em;
}

.aboutGal {
  margin: 0;
  background: black;
  font-size: 1.2em;
  color: white;
  font-weight: 300;
}

.shootingStarHeading {
  font-family: "Poppins";
  font-size: 3em;
  color: white;
  font-weight: 500;

}

div.textDiv p.text a.here {
  font-weight: 500;
  text-decoration: underline #ab1215 solid 3px;
  transition: 0.2s;
  padding: 3px;
  pointer: cursor;
}

div.textDiv p.text a.here:hover {
  color: black;
  background-color: white;
  text-decoration: underline black solid 3px;
  border-radius: 4px;
  border: solid 2px #ab1215;
  pointer: cursor;
}

/* Slideshow container */
.slideshow {
  position: relative;
  margin: 0;
  height: 150px;
  align-content: space-evenly;
}

/* Hide the images by default */
.mySlides {
  display: none;
  vertical-align: middle;
  align-content: space-evenly;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 10s;
}

@keyframes fade {
  from {opacity: 0}
  to {opacity: 1}
  to {opacity: 0}
}

.bigHeadText {
 font-size: 7em;
 font-weight: 600;
}

.scaleText {
    font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }

.logoText {
  padding: 25px;
  height: 300px;
  margin: 0 auto;
}

.logoTextAb {
  height: 120px;
  margin-bottom: 20px;
}

.joinTitle {
  font-size: 2.3em;
  font-weight: 300;
  color: #fff;
}

.divBtn {
  margin: auto;
  padding: auto;
  text-align: center;
  align-items: center;
  align-content: center;
  scale: 2.4;
}


/*   MEDIA FORMATTING FOR MOBILE REMAINEDER */

@media (max-width: 1100px) {
  .divBtn { scale: 2 }
}

@media (max-width: 700px) {
  .slideshow {width: 100%; height: 230px;}
  .section-title, .rockTitle {font-size: 2.2em}
  .sec-about {font-size: 1.6em}
  .section-subheading {font-size: 1.4em}
  #animated-text-strip {padding: 0;}
  .marquee {font-size: 1.2rem;}
  .textDiv {padding: 30px;}
  .text {font-size: 1.2em;}
  .homeImgMain {width: 95%;}
  .textAboutDiv {padding:0 20px;}
  .h1follow {font-size: 1.7em;}
  .h1follow2 {font-size: 1.9em;}
  .h1shows {font-size: 1.7em;}
  .h2gal {font-size: 1.3em}
  .h1contact {font-size: 2em}
  .aboutGal {font-size: 1.2em}
  #aboutHead, #showHead, #galleryHead, #contactHead {height: 140px}
  .bigHeadText { font-size: 4.3em }
  .logoText { height: 180px; margin: 0 auto; padding-bottom:0; padding-top: 25px }
  .singleSpace { display: hidden }
  .divBtn { scale: 1.5 }
} 

@media (max-width: 430px) {
  .slideshow {width: 100%; height: 230px;}
  .section-title, .rockTitle {font-size: 1.9em}
  .sec-about {font-size: 1.3em}
  .section-subheading {font-size: 1.2em}
  #animated-text-strip {padding: 0;}
  .marquee {font-size: 1.2rem;}
  .textDiv {padding: 30px;}
  .text {font-size: 1.2em;}
  .homeImgMain {width: 95%;}
  .abSub {font-size: 1em}
  .textAboutDiv {padding:0 20px;}
  .h1follow {font-size: 1.3em;}
  .h1follow2 {font-size: 1.5em;}
  .h1shows {font-size: 1.5em;}
  .h2gal {font-size: 1.1em}
  .h1contact {font-size: 1.3em}
  .aboutGal {font-size: 1em}
  #aboutHead, #showHead, #galleryHead, #contactHead {height: 140px}
  .bigHeadText { font-size: 4.3em }
  .logoText { height: 180px; margin: 0 auto; padding-bottom:0; padding-top: 25px }
  .gOptionLink {padding-left: 10px; padding-right: 10px}
  #book {font-size: 1.3em}
  .singleSpace { display: hidden }
  .divBtn { scale: 1.2 }
} 
@media (max-width: 400px) {
 .aboutGal {font-size: 0.8em}
} 