        .container {
          display: grid;
          grid-template-areas:
          "header header"
          "menu content"
          "footer footer";
          grid-template-columns: 1fr 3fr;
          gap: 5px;
          background-color: #E5C3FA;
          padding: 5px;
          }

          /*
          --dark purple: #7D44A4;
          --med purple: #8551A8;
          --light purple: #9565B3;
          --olive green: #505800;
          --dark cool green: #00613B;
          --light cool green: #00784B; #67B497;

          dark purple #713D94;
          med purple #926DAB;
          light purple #E5C3FA;
          light olive #E1EB75;
          med green ;
          light green ; 



          */

        .container > div {
          padding: 10px
        }

        .container > div.header {
          grid-area: header;
          text-align: center;
        }


        .container > div.menu{
          grid-area: menu;
          background-color: #8551A8;
          border-radius: 5px;
          padding-left: 10%;
          line-height: 2;
          }

        .container > div.content {
          grid-area: content;
          text-align: left;
          line-height: 1.8;
          }

        .container > div.footer {
          grid-area: footer;
          text-align: right;
          color: #7D44A4;
        }

        #galleryItems {

          .nested-grid-item{
            display: grid;
            grid-template-columns: repeat(3,1fr);
            grid-template-rows: auto;
            gap: 10px;
            justify-items: center;
            align-items: center;
          }
          img.gallery {
            max-width: 50%;
            height: auto;
            border-radius: 30px;
            transition-duration: 0.4s;
          }
          img.gallery:hover {
            border-radius: 0%;
            max-width: 75%;
            transition-duration: 0.4s;
          }
          .hide {
            display: none;
            transition-duration: 0.4s;
            }

           img.gallery:hover + .hide {
            display: block;
            color: #7D44A4;
            text-align: left;
            transition-duration: 0.4s;
            }
         
        }
        
        
        body {
          font-family: "Sansation", monospace;
          background-color: #505800;
        }

        h1 {
          font-family: "Federo";
          font-size: 35px;
          color: #505800;
          }

        h3 {
          font-size: 25px;
          font-weight: 800;
          font-family: "Mulish";
          color: #D7F0CC;
          text-shadow: -1px 0 #505800, 0 1px #505800, 1px 0 #505800, 0 -1px #505800;
          }

        img.imgcontent {
          max-width: 50%;
          height: auto;
          border-radius: 50%;
          margin: auto;
          transition-duration: 0.4s;
          }

          img.imgcontent:hover {
            max-width: 75%;
            height: auto;
            transition-duration: 0.4s;
          }

          .Homeimage-container{
            width: 100%;
            height: 5vh;
            border: none;
            overflow: hidden;
            }

            .Homeimage-container img{
              width: 100%;
              height: 100%;
              object-fit: fill;
              margin: 0;
              padding: 0;
              display: block;
            }

         img.imghero {
           width: 100%;
           height: auto;;
         }

         .herocontainer {
           position: relative;
         }

        .topleft {
          position: absolute;
          top; 8px;
          left; 16px;
          background-color: #daffd8;
          padding: 10px;
          border-radius: 10px;
        }


        button {
          font-family: "Mulish";
          padding: 12px 28px;
          background-color: #505800;
          color: #D7F0CC;
          border-radius: 1%;
          transition-duration: 0.4s;
          cursor: pointer;
          text-decoration:none;
          border: none;
          }

        button:hover {
          padding: 12px 28px;
          background-color: #D7F0CC;
          color: #505800;
          border-radius: 50%;
          text-transform: uppercase;
        }

        .homehide {
            display: none;
            transition-duration: 0.4s;
            }


        button.home{
          font-family: "Sansation";
          padding: 24px 56px;
          background-color: #505800;
          color: #D7F0CC;
          border-radius: 10px;
          transition-duration: 0.4s;
          cursor: pointer;
          text-decoration:none;
          border: none;
          font-size: 24px;
        }

          button.home:hover {
          padding: 24px 56px;
          background-color: #D7F0CC;
          color: #505800;
          border-radius: 50%;
          text-transform: uppercase;
        }

           a:hover + .homehide {
            display: block;
            color: #9C39C6;
            text-align: center;
            transition-duration: 0.4s;}


        a {
            color: #52A22F;
            text_decoration: none;
          }

        a:hover {
          color: #505800;
          transition-duration: 0.4s;
          }

         ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            background-color: #505800;
            display: flex;
          }

          ul li a {
              display: block;
              color: #D7F0CC;
              padding: 14px 16px;
              text-decoration: none;
          }

          ul li a:hover {
          background-color: #D7F0CC;
           color: #505800;
;
            text-transform: uppercase;
          }

          /*
          colors:
          Dark Purple   #9C39C6
          middle Purple #D1A4E5
          light Purple  #E5CCF0

          dark green   #2E5B1A
          middle green #52a22f
          light green  #D7F0CC

          */


          /* =========================
IMAGE / VIDEO LIGHTBOX
========================= */

.lightbox {
display: none;

position: fixed;
z-index: 1000;

top: 0;
left: 0;

width: 100%;
height: 100%;

background-color: rgba(0, 0, 0, 0.85);

justify-content: center;
align-items: center;
}

.lightbox.active {
display: flex;
}

/* Content container */

.lightbox-content {
width: 80%;
max-width: 1000px;

text-align: center;
}

/* =========================
LARGE IMAGE
========================= */

#lightboxImage {
display: none;

max-width: 100%;
max-height: 80vh;

width: auto;
height: auto;

margin: auto;

border-radius: 10px;

box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

/* =========================
LARGE VIDEO
========================= */

#lightboxVideo {
display: none;

width: 100%;
height: 70vh;

max-height: 80vh;

border: none;

box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

/* =========================
CAPTION
========================= */

#lightboxCaption {
color: #D7F0CC;

font-family: "Mulish";

font-size: 18px;

margin-top: 10px;
}

/* =========================
CLOSE BUTTON
========================= */

.lightbox-close {
position: absolute;

top: 20px;
right: 30px;

font-size: 40px;
line-height: 1;

background: none;

color: #D7F0CC;

border: none;

cursor: pointer;

padding: 5px 15px;
}

.lightbox-close:hover {
background: none;
color: #E5C3FA;
}

/* =========================
CAROUSEL BUTTONS
========================= */

.carousel-button {
position: absolute;

top: 50%;

transform: translateY(-50%);

background-color: #505800;

color: #D7F0CC;

border: none;

border-radius: 10px;

font-size: 35px;

padding: 15px 20px;

cursor: pointer;

z-index: 1001;
}

.carousel-button:hover {
background-color: #D7F0CC;

color: #505800;

border-radius: 50%;
}

.carousel-button.prev {
left: 30px;
}

.carousel-button.next {
right: 30px;
}

/* =========================
MOBILE
========================= */

@media (max-width: 700px) {

.lightbox-content {
width: 75%;
}

#lightboxImage {
max-width: 100%;
max-height: 70vh;
}

#lightboxVideo {
width: 100%;
height: 40vh;
}

.carousel-button {
font-size: 25px;

padding: 10px 15px;


}

.carousel-button.prev {
left: 10px;
}

.carousel-button.next {
right: 10px;
}

.lightbox-close {
top: 10px;
right: 10px;
}

}
