body {
    max-width: 1280px;
    /* min-height: 2625px; */
    margin: 20 20 20 20;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Comfortaa', cursive;
    color: #000000;
    background-color: #fff9f5;
  }

a {
  color: #657a40;
}

a:hover {
  color: #45552B;
}

/* top navigation */
  
#topNav ul {
    padding: 13px 0 18px;
    float: left;
  }

#topNav ul {
    list-style-type: none;
    overflow: hidden;
    font-size: 14px;
    font-family: effra, sans-serif;
    font-weight: 400;
    font-style: normal;
    display: grid;
    align-items: left;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: 1fr;
  }
  
#topNav li {
    /* display: inline; */
    text-transform: uppercase;
    text-align: center;
    font-family: 'Ribeye Marrow', cursive;
    font-size: 24pt;
    
  }
  
#topNav a {
    text-decoration: none;
    color: #ffffff;
    background-color: #5a6c33;
    border-radius: 20px;
    padding: 0 10px 0;
    margin: 5px;
  }
  
#topNav a:hover {
    color: #ffffff;
    background-color: #45552B;
    font-family: 'Ribeye', cursive;
  }

/* SECTIONS */

    /* section headers */

    h2 {
        font-family: 'Ribeye', cursive;
        color: #5a2500;
        padding-left: 1rem;
    }

    #portraith2, #bizh2 {
        margin-top: 2em;
    }

    /* top section */

    .topSection {
        display: grid;
        background-image: url('stripebanner.png');
        background-size: cover;
        width: 100%;
        height: 350px;
        /* grid-template-columns: repeat(9, 1fr);
        grid-template-areas: 
        ". . . . . . . . ."
        ". . . . . . . . ."
        ". . logo logo logo logo logo . ."
        /* ". . . . . . . . ." 
        ". . . . . . . . ."; */
    }
    
    .topSection img {
        height: auto;
        width: auto;
    }

    #logo {
        max-width: 1000px;
        width: 100%;
        height: auto;
        /* grid-column-start: 2;
        grid-column-end: 5; */
        /* padding-top: 10%;
        padding-left: 10%; */
        /* grid-area: logo; */
        place-self: center;
        padding-top: 6em;
    }

    #lizard {
        /* grid-column-start: 4; */
        grid-area: lizard;
    }

    /* about section */

    #aboutInner {
        display: grid;
        grid-template-columns: 300px 1fr; 
        /* grid-gap: 10px;  */
        align-items: start; 
        padding: 0 1rem;
    }
    
    #about img {
        max-width: 100%; 
        height: auto; 
        grid-column: 1; 
    }
    
    #about aside {
        grid-column: 2; 
        padding-left: 10px; 
    }

    /* business section */

    .bizInner {
        margin: 0 1em;
    }

    #bizInner {
        display: grid;
        grid-template-columns: 400px 1fr; 
        grid-gap: 10px; 
        /* align-items: start;  */
        padding: 0 1rem;
        justify-content: center;
    }
    
    #biz img {
        max-width: 250px; 
        height: auto; 
        grid-column: 1; 
        justify-self: end;
    }
    
    #biz aside {
        grid-column: 2; 
        padding-left: 10px; 
    }
    

    /* shop section */

    .shopSection {
        display: grid;
    }

    .demo {
        max-width: 794px;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        /* grid-template-columns: 100px, auto, 100px;
        grid-template-rows: 1fr; */
        /* grid-template-areas: 
            "m s m"; */
        padding: 0 1rem;
    }
    .demo ul {
        list-style: none outside none;
        padding-left: 0;
        margin-bottom: 0;
    }
    .demo li {
        display: block;
        float: left;
        margin-right: 6px;
        cursor: pointer;
    }

    .demo li img {
        max-width: 100%;
        height: auto;
    }

    #lightslider {
        display: grid;
        justify-content: center;
    }

    .lSPrev, .lSNext {
        background-color: #edb894;
        border-radius: 50%;
    }

    /* pet portrait section and page */

    .portraitTop {
        display: grid;
        justify-content: center;
    }
   
    .portraitTop img {
        max-width: 400px;
    }

    #homeLogo:hover {
        max-width: 410px;
    }

    .petPortraits {
        
    }

    #portrait {
        grid-row: 1;
    }

    .portraitInner {
        display: grid;
        grid-template-columns: minmax(200px, auto);
        /* grid-gap: 10px; */
        align-items: center;
        padding: 0 1rem;
    }

    .portraitP {
        grid-row: 1;
    }

    .example {
        grid-row: 2;
        justify-self: center;
        margin-bottom: 20px;
    }

    .buttonRow {
        grid-row: 3;
        justify-self: center;
    }

    .petPortraits img {
        max-width: 915px;
        width: 100%;
        height: auto;
    }

    .button {
        background-color: #edb894;
        border-color: #5a2500;
        border-width: 2px;
        border-radius: 20px;
        box-shadow: 4px 4px #5a2500;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 20px;
        margin: 4px 2px;
        padding: 2px 10px;
        transition: all 0.5s;
        cursor: pointer;
      }
      
      .button span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
      }
      
      .button span:after {
        content: '\00bb';
        position: absolute;
        opacity: 0;
        top: 0;
        right: -20px;
        transition: 0.5s;
      }
      
      .button:hover span {
        padding-right: 25px;
        
      }
      
      .button:hover span:after {
        opacity: 1;
        right: 0;
      }

      .button:hover {
        background-color: #823a08;
      }

      .button:hover a {
        color: #ffffff;
      }

    .button a {
        text-decoration: none;
        color: #5a2500;
        font-family: 'Comfortaa', cursive;
    }

    .info {
        display: grid;
        justify-content: center;
        width: 100%;
    }

    .pics {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .pics img {
        justify-self: center;
        place-self: center;
    }

    #boo {
        max-width: 562px;
        width: 100%;
        height: auto;
    }

    #ruby {
        max-width: 502px;
        width: 100%;
        height: auto;
    }
    
    /* contact section */

    .contactInner {
        display: grid;
        grid-template-columns: 1fr 4fr;
        justify-content: center;
        grid-template-areas: 
            "icons gizmo";
    }

    #social {
        grid-area: icons;
        padding-right: 1em;
    }

    .contactInner a {
        padding-right: 1em;
        }

    #laptop {
        position: relative;
        text-align: center;
        grid-area: gizmo;
        /* max-width: 100%;
        width: auto;
        height: auto; */
    }

    #save {
        position: absolute;
        bottom: 20px;
        right: 30px;
        color: #45552B;
        background-color: #ffffff;
        font-size: 1.5em;
    }

    #save:hover {
       color: #1b2805; 
       font-style: oblique;
    }

    #dog {
        border-radius: 20px;
        max-width: 100%;
        /* max-width: 500px; */
        height: auto;
    }

    #laptop:hover #dog {
        opacity: 0.75;
    }



        /* social media icon links */

        #social {
        list-style-type: none;
        display: grid;
        grid-area: icons;
        }
    
        #social li {
        width: 3em;
        height: 3em;
        padding: 10px;
        /* margin-top: 15px; */
        }
    
        #social li a {
        color: #5a6c33;
        }
    
        #social li a:hover {
        color: #1b2805;
        }
    
        #mail {
            display: grid;
        }

        /* back to top button */

        #topBtn {
            display: none;
            position: fixed;
            bottom: 1em;
            right: 1.5em;
            z-index: 99;
            font-size: 14px;
            border: #ffffff;
            border-style: dashed;
            /* outline: none; */
            background-color: hsla(82, 31%, 36%, 0.75);
            color: white;
            cursor: pointer;
            padding: 1em;
            border-radius: 25px;
        }

        #topBtn:hover {
            background-color: #1b2805;
        }
    
        /* footer navigation */

    footer {
        display: grid;
        float: left;
        /* height: 58px; */
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        grid-template-areas: 
            "f c";
    }

    .fnav {
        max-width: 1280px;
        /* height: 58px; */
        padding: 13px 0 18px;
        text-align: left;
        display: grid;
        grid-area: f;
        align-self: center;
    }
    
    .fnav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    
    .fnav li {
        display: inline;
        text-align: center;
        font-family: 'Ribeye Marrow', cursive;
        font-size: 13pt;
        color: #5a6c33;
    }
    
    .fnav a {
        text-decoration: none;
        color: #657a40;
        padding: 0 8px 0;
    }
    
    .fnav a:hover {
        color: #45552B;
        font-family: 'Ribeye', cursive;
    }

    footer p {
        grid-area: c;
        justify-self: end;
        font-size: 13px;
        align-self: center;
    }


/* media queries */

/* tablet */

@media (max-width: 768px) {
    #topNav ul {
        display: grid;
        justify-items: start; 
        grid-template-columns: repeat(2, 1fr); 
    }
    #aboutInner, #bizInner {
        grid-template-columns: 1fr; 
        grid-template-rows: auto auto; 
    }

    #about img, #biz img, 
    #about aside, #biz aside {
        grid-column: 1; 
        padding-left: 0; 
    }
  }
  
  /* mobile  */

  @media (max-width: 480px) {
    
    /* #topNav ul {
        display: grid;
        justify-items: start; 
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto); 
    } */

    #topNav {
        display: none;
    }

    #topBtn {
        font-size: 12px;
        background-color: #657a40;
    }

    .topSection {
        display: grid;
        background-image: url('stripebanner.png');
        background-size: cover;
        width: 100%;
        height: 350px;
        grid-template-columns: 1fr;
        grid-template-areas:
        "top"
        "bottom";
    }

    #logo {
        display: none;
    }

    #vert {
        grid-area: top;
        width: 90%;
        height: auto;
    }

    #lizard {
        /* grid-column-start: 4; */
        grid-area: bottom;
    }

    #social li {
        display: inline;
        text-align: center;
        width: 2em;
        height: 2em;
        padding: 2px;
        }

    .contactInner img {
        border-radius: 20px;
        max-width: 100%;
        height: auto;
    }

    #logo {
        display: none;
    }

    #save {
        font-size: 1em;
    }

    .fnav {
        display: none;
    }

    .mobilefnav {
        max-width: 1280px;
        height: 58px;
        padding: 13px 0 18px;
        text-align: left;
        display: grid;
        grid-area: f;
    }
    
    .mobilefnav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    
    .mobilefnav li {
        display: inline;
        text-align: center;
        font-family: 'Ribeye Marrow', cursive;
        font-size: 16pt;
        color: #5a6c33;
    }
    
    .mobilefnav a {
        text-decoration: none;
        color: #657a40;
        padding: 0 20px 0;
    }
    
    .mobilefnav a:hover {
        color: #45552B;
        font-family: 'Ribeye', cursive;
    }

    .info {
        padding: 0 2em;
        max-width: fit-content;
    }

    .portraitBtns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        padding: 0 2em 2em; 
        /* max-width: fit-content; */
    }

    .portraitBtns button {
        /* justify-self: center; */
    }

    .pics {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    #ruby {
        padding: 1em 0 0 0;
    }

  }


/* Additional Styles for Desktop */
@media (min-width: 700px) {

    .mobilefnav {
        display: none;
    }

    #aboutInner {
        display: grid;
        grid-template-columns: 1fr minmax(200px,);
        grid-gap: 10px;
        grid-template-areas: 
        "photo text";
    }

    .contactInner {
        display: grid;
        /* grid-template-columns: 1fr 4fr; */
        grid-template-columns: minmax(200px, auto) minmax(200px, auto);
        grid-gap: 10px;
        grid-template-areas: 
            "icons gizmo";
    }

    #vert {
        display: none;
    }

    }

    