 
@import url('https://fonts.googleapis.com/css2?family=Gorditas:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

 
  /*Gallery Page Styling*/

   main {
            display: grid;
            grid-template-areas:
              "subheader-1 subheader-1"
            "hero hero"
              "subheader-2 subheader-3"
            "left right";
          align-items:center;
            justify-content: center;
              flex: 1;
                background-color: #d9ec6b;
            border-style: solid;
               border-width: 3px;
  border-color: #9db842;
              border-radius: 0px ;
  box-shadow: 10px 10px 15px rgba(115, 43, 87, 0.52);
                padding: 10px 20px 20px 20px;
              width: auto;
            color: #433058;
            }
            
#subheader-1{
  grid-area: subheader-1;
  text-align: center;
  font-weight:bold;
  font-family: Gorditas;
  font-size: 35px;
  
  
}

   
#hero-box{
  grid-area:hero;
  height: auto;
  width: auto;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 20px;
  justify-content: center;
  background-color:trasparent;

}

/* SLIDESHOW: */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.mySlides img{
  border-radius: 20px;
  
  box-shadow: 10px 10px 15px rgba(115, 43, 87, 0.52);
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
 /* 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);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  font-family: Inter;
}

/* Number text (1/3 etc) 
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}*/

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #dbacdc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #684996;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
} 
/* SLIDESHOW CODE ENDS */

#subheader-2{
  grid-area: subheader-2;
  text-align: center;
  font-weight:400;
  font-family: Gorditas;
}

#subheader-3{
  grid-area: subheader-3;
  text-align: center;
  font-weight:400;
  font-family: Gorditas;
}
  
#left-content-box{
  grid-area: left;
   height: 300px;
  width: 490px;
  border-radius: 20px ;
  padding: 20px;
  background-color: transparent;
  box-shadow: inset 4px 4px 10px 4px rgba(157, 184, 66,0.52);
}

#right-content-box{
  grid-area: right;
  height: 300px;
  width: 300px;
  margin-left: 20px; 
  border-radius: 50%;
  padding: 20px;
  background-color:pink;
  border: 5px solid #9db842;
  background-size: cover;
  background-image: url("https://i.ibb.co/1tG72Yb0/Moonie-Goonie-pfp.jpg");
box-shadow: 10px 10px 15px rgba(115, 43, 87, 0.52);
}
  
  #right-content-box:hover {
  animation: float 1.5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* General Styling Code: */


 :root {
                --header-image: url('https://i.ibb.co/7xsDJrDb/Moonie-Goonie-Etsy-Cover-Photo.png');
                --body-bg-image: url('https://i.ibb.co/pvnCZWmg/Green-drip-bg-V3.png');
--blog-image:
  url(https://i.ibb.co/tPwGtwrK/Shopify-Website-Banner-Desktop.png)
                /* colors */
                --content: #43256E;
            }

    
            body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                background-color: #08031A;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: cover;
                color: #fceaff;
                background-image: var(--body-bg-image);
               background-position: center;
              background-repeat: no-repeat;
               background-attachment: scroll;
            }

            * {
                box-sizing: border-box;
            }

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #container {
                max-width: 900px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #ED64F5;
                font-weight: bold;
              text-decoration:none;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

               #header {
                width: 100%;
              margin-top: 10px;
                background-color:;
                /* header color here! */
                height: 150px;
                /* this is only for a background image! */
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
               /* background-image: var(--header-image); */
                background-size: 100%;
            }
          #logo img:hover {
  animation: float 1.5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0px);
  }
}

            /* navigation section!! */
            #navbar {
                height: 60px;
              margin-top:20px;
              background-image: linear-gradient(#E9C4EC,#AA2D6B,#762861,#FF9EE7);
              border-style: solid;
               border-width: 3px;
  border-color: #E17EC8;
              border-radius: 20px 20px 0px 0px;
                /*background-color: #13092D;*//* navbar color */
                width: 100%;
              box-shadow: 10px 10px 15px rgba(115, 43, 87, 0.52);
            }
            #navbar ul {
              
                display: flex;
                padding: 5px;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
             
            }

            #navbar li {
                padding-top: 10px;
            }

            /* navigation links*/
            #navbar li a {
                color: #FFE0EC;
                /* navbar text color */
                font-weight: 400;
                text-decoration: none;
                /* this removes the underline */
              font-family: Gorditas;
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #79b4ee;
                text-decoration: none;
            }

   
 #flex {
    display: flex;
    
}

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: ;
                width: 10px;
                padding: 20px;
              margin: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
         #floating-mascot {
    position: absolute;
    left:100px;
    top: 250px;
    z-index: 999;
}

#floating-mascot img {
    width: auto;
    height: 600px;
  filter: drop-shadow(10px 10px 15px rgba(115, 43, 87, 0.52));
}
   
            
          main img {
    max-width: 100%;
    height: auto;
            margin-top: 10px; 
}
          #main-text-block{
            padding: 0px 20px 20px 20px;
            font-family: Inter;
            font-:bold;
            color: black;
          }
            /* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

         #leftSidebar {
    flex: 0 0 200px;
}

          #leftSidebar img {
            max-width: 100%;
    height: auto;
          }
      
       
            footer {
               background-image: linear-gradient(#E9C4EC,#AA2D6B,#762861,#FF9EE7);
                /* background color for footer */
              border-style: solid;
               border-width: 3px;
  border-color: #E17EC8;
              border-radius: 0px 0px 20px 20px;
                font-family: Gorditas;
              font-weight: 400;
                width: 100%;
                height: 60px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
              box-shadow: 10px 10px 15px rgba(115, 43, 87, 0.52);
                margin-bottom: 150px;
            }
          
         
        
            h2,
            h3 {
                color: #433058;
            }

        
               h1{
  text-align: center;
  font-family: Gorditas;
  color: #433058;
}
          

            strong {
                /* this styles bold text */
                color: #ED64F5;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #13092D;
                border: 1px solid #ED64F5;
                padding: 10px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }


            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }
              
              #floating-mascot img{
                width:0px;
              }
                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
        </style>


