
body {
    background-image: linear-gradient(to bottom, darkgray, #FFFFFF);
    background-repeat: no-repeat;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    margin-top: 0
}

nav {
    background-color: rgb(241, 242, 244, 0.911);
    font-weight: bold;
    padding-top: 1em;
    padding-bottom: 6px;
    border-bottom: 2px solid black;
    text-indent: 1em;
}
nav a {
    text-decoration: none; /*This makes no underlines on nav hyperlinks*/
    transition:color 4s linear;
}
a:hover {
    color: black;
}
nav a:hover {
    transition-property: color;
    transition-duration: 0s;
    transition-timing-function: linear;
}
/* Visited nav links */
nav a:visited {
    color: #009483;/*BLUEgREEN*/
}
.nav-link.active,
nav a[aria-current="page"] {
    color: rgb(69,71,56);
}
/*.nav-link.active {
  color: blue;   
}*/
h1 {
    margin-bottom: 0;
    margin-left: 0px;
        padding-left: 0px;
    font-size: 3rem;
    margin-top: 0; 
}
h2 {
    color: rgb(69,71,56);
}
h3 {
    color: rgb(69,71,56);
}
li{
    /*list-style-image: url(camera-bullet.jpg);*/
    list-style: none;
    background: url(camera-bullet.jpg) no-repeat left center;
    background-size: 30px auto; /* adjust size */
    padding-top: 10px; /* make room for image */
    padding-bottom: 10px; /* make room for image */
    padding-left: 35px; /* make room for image */
    margin-left: -35px;
}
.liSeasons{
    list-style: none;
    background-size: 30px 30px; /* adjust size */
    padding-top: 10px; /* make room for image */
    padding-bottom: 10px; /* make room for image */
    padding-left: 35px; /* make room for image */
}
.liSpring{
    background: url(liSpring.jpg) no-repeat left center;
}
.liSummer{
    background: url(liSummer.jpg) no-repeat left center;
}
.liFall{
    background: url(liFall.png) no-repeat left center;
}
.liWinter{
    background: url(liWinter.png) no-repeat left center;
}
footer {
    font-size: 75%;
    font-style: italic;
    background-color: rgb(241, 242, 244);
}
#photoAndQR{/*for the Index page*/
    display: inline-flex;
    justify-content: space-around;
    padding-bottom: 20px;
}
.centered {
    text-align: center;
}
/* Center an image horizontally */
.center-img {
    display: block;     /* ensures margin auto works */
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    box-shadow:5px 5px 5px #777;
}
.platypi-justin {
    font-family: "Platypi", serif;
    font-weight: 600;
    font-style: normal;
}
.satisfy-regular {
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-style: normal;
}
#side-bar {/*for the Index page*/
    /*background-color: rgb(241, 242, 244);*/
    background-image: linear-gradient(to right, rgb(241, 242, 244, 0.911), rgb(241, 242, 244, 0.911), rgba(241, 242, 244, 0.911),rgb(63, 63, 63));
    background-repeat: no-repeat;
    float: right;
    width: 240px;
    margin-right: 20px;
    padding-left: 20px;
    border-left: 2px solid black;
    border-right: 2px solid black;
}
#main-area {/*for the Index page*/
    margin-left: 20px;
}
.clear-it {/*for the Index page*/
    clear: right;
}

/* Photo + QR layout: allow QR to wrap to next row when space is limited */
#photoAndQR {
    display: flex;
    flex-wrap: wrap;       /* allow items to wrap to next line */
    align-items: center;   /* align photo and QR vertically when on same row */
    justify-content: center; /* center items horizontally */
    gap: 1rem;
    padding: 0.5rem 0;
}
#photoAndQR img {
    max-width: 100%;
    height: auto;
}
#qrCodeText{
    text-align: center;
    font-size: 1.2em;
}
#qrcode {
    flex: 0 0 200px; /* fixed ideal size, will wrap if no room */
    width: 200px;
    height: 200px;
    display: block;
    text-align: center;
    align-items: center;
    justify-items: center;
}

@media (max-width: 480px) {
    #qrcode {
        flex: 0 0 160px;
        width: 160px;
        height: 160px;
        text-align: center;
    }
    h1 {
        text-align: center;
        font-size: 2rem;
    }
}
/*
#side-bar img {
    filter:opacity(70%);
}
*/
/*for the Index page*/
@media (max-width: 710px) {
    .wrapper {
        /*background: white;*/
        background-image: radial-gradient( rgb(118, 118, 118),darkgray,white,white,white);
        background-repeat:no-repeat;

        max-width: 1100px;
        min-width: 350px;

    }
    #img1, #img1contest, #img1arches, #img1KateLphotography, #img1KateLphotography2, #img1KateLphotographySchemes {
        display: none;
    }
    #logo {
        background-color: rgb(241, 242, 244, 0.911);
        background-image: url("Business Watermrk Logo (gold).png");
        background-size: auto 70px;
        background-repeat: no-repeat;
        background-position: center;
        height: 70px;
        padding-top: 3px;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    header {
        padding-top: 0px;
        margin-top: 0px;
        margin-left: 0px;
        padding-left: 0px;
        background-color: rgb(241, 242, 244, 0.911);
        color: rgb(69,71,56);
        text-indent: 1em;
        background-image: url("picsLarge/Empty.png");
        background-size: auto 70px;
        background-repeat: no-repeat;
        background-position: right;
    }
    
    #gallery {/*This is for the Portfolio*/
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;

        
    }
    /* push following content below the QR when layout stacks on small screens */
    #photoAndQR {
        margin-bottom: 3rem;
    }
}
@media (min-width: 710px) {
    .wrapper {
        /*background: white;*/
        background-image: radial-gradient( rgb(63, 63, 63),darkgray,white,white,white);
        background-repeat:no-repeat;
        width: 80%;
        max-width: 1100px;
        min-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    #img2, #img2contest, #img2arches, #img2KateLphotography, #img2KateLphotography2, #img2KateLphotographySchemes {
        display: none;
    }
    #logo {
        display: none;
    }
    header {
        background-color: rgb(241, 242, 244, 0.911);
        color: rgb(69,71,56);
        background-image: url("Business Watermrk Logo (gold).png");
        background-size: auto 70px;
        background-repeat: no-repeat;
        background-position: right;
        text-indent: 1em;
    }
    .brAfterQR {
        display: none;
    }
    #gallery {/*This is for the Portfolio*/
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        padding-left: 30px;
        padding-right: 30px;
        background: url(bkgrnd.jpg) repeat-y left top, url(bkgrnd.jpg) repeat-y right top;
    }
    #contact {/*This is for the Portfolio*/
        padding-left: 30px;
        padding-right: 30px;
        background: url(bkgrnd.jpg) repeat-y left, url(bkgrnd.jpg) repeat-y right;
    }
} 

picture {/*This is for the Portfolio*/
    display: flex;
    justify-content: center;
    padding-bottom: 20px;

}

#gallery img {/*This is for the Portfolio*/
    margin: 1em;
    box-shadow:5px 5px 5px #777;
}
figcaption {/*This is for the Portfolio*/
    color: Black;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 2px #777;
}


/*pricing page*/
#main-pricing {
    margin: 1em;
}
table {
    border: 2px solid rgb(69,71,56);
    border-collapse: collapse;
    width: 75%;
    margin: auto;
    background-color: rgb(241, 242, 244);
}
td, th {
    padding: .5em;
    border: 2px solid rgb(69,71,56);
}
th {
    color: rgb(241, 242, 244);
    background-color: rgb(69,71,56);
}
.text {
    text-align: left;
}
tr:nth-of-type(odd) {
    background-color: lightgray;
}