#wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 24px;
    border-radius: 50px;
}

body {
    background-color: ghostwhite;
    padding: 5px;
}

header {
    grid-column: span 12;
    box-sizing: border-box;
    position: sticky;
    display: inline-block;
    top: 0;
    padding: 20px 0;
    background-color: silver;
    width: 100%;
    z-index: 5;
    text-align: center;
    font-family: "owners-xxwide", sans-serif;
    font-weight: 700;
    font-style: oblique;
    width: 100%;
    padding-bottom: 0;
    border: 5px solid #0098c3;
    background: url(Hound.png);
    background-size: contain;
    background-color: silver;
    background-repeat: no-repeat;

}

.photos {
    grid-column: span 12;
    height: 450px;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    border: 5px solid black;
    margin: 5px;
}

.logo {
    width: 350px; /* Set the width of the logo */
    position: absolute; /* Position the logo */
    z-index: 3;
    display: flex; /* Add display flex */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.logo2 {
    grid-column: span 12;
    width: 50px
}

h1 {
    grid-column: span 6;
    padding: 0;
    margin: 0;
    width: 100%;
}
h2,
h3 {
    color: #f1044b;
    text-shadow: 3px 3px 3px silver;
    text-align: center;
    font-family: "owners-xxwide", sans-serif;
    font-weight: 700;
    font-style: oblique;
}

nav {
    width: 100%;
    height: 100px;
    /*
    border-top: 1px solid rgba(255,255,255,.2) ;
    border-bottom: 1px solid rgba(255,255,255,.2) ;
    */
    position: sticky;
    top: 147px;
    font-family: "owners-xxwide", sans-serif;
    font-weight: 700;
    font-style: oblique;
    z-index:999;
}

main {
    display:grid;
    padding-top: 0;
    top:0;
    background-color:ghostwhite;
}

p {
    color:black;
    font-family: "owners-xxwide", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 50px;
}

.dookie {
    grid-column: span 12;
}

.peepee {
    grid-column:span 12;
}

main .photo {
    position: relative; /* Change position to relative */
    top: auto; /* Remove top property */
    width: 100%; /* Set the width of the photo to be the width of the viewport */
    height: 450px; /* Set the maximum height of the photo */
    background-size: cover; /* Scale the photo to cover the entire container */
    background-position: center; /* Center the photo within the container */
    background-repeat: no-repeat; /* Prevent the photo from repeating */
    object-fit: cover; /* Scale the photo to cover the entire container */
    z-index: 2;
    display: inline-block; /* Change display to inline-block */
}

.galleryPhoto {
    width: 80%; /* Set the width of the photo to be 80% of the viewport */
    height: 350px; /* Automatically adjust the height based on the aspect ratio */
    max-height: 400px; /* Set the maximum height of the photo */
    background-size: cover; /* Scale the photo to cover the entire container */
    background-position: center; /* Center the photo within the container */
    background-repeat: no-repeat; /* Prevent the photo from repeating */
    object-fit: cover; /* Scale the photo to cover the entire container */
}

.container {
    box-sizing: border-box;
    grid-column: span 12;
    border: 5px solid #f1044b;
    border-radius: 50px;
    background-color: silver;
    margin: 10px;
    height:min-content;
}

.container2 {
    box-sizing: border-box;
    grid-column: span 12;
    border: 5px solid #f1044b;
    border-radius: 50px;
    background-color: silver;
    margin: 10px;
    padding: 10px;
    height:min-content;
    background: url(serviceareamap.png);
    background-repeat: no-repeat;
    background-size:cover;
}

.container3 {
    box-sizing: border-box;
    grid-column: span 12;
    border: 5px solid #f1044b;
    border-radius: 50px;
    background-color: silver;
    margin: 10px;
    padding: 10px;
    height:min-content;
}

.container p{
    color:#0098c3;
}
.container3 p {
    color:#0098c3;
}

.container li {
    color: #f1044b;
    font-family: "owners-xxwide", sans-serif;
    font-weight: 700;
    font-style: italic;
    text-shadow: 3px 3px 3px silver;
}

.container2 li {
    color: #f1044b;
    font-family: "owners-xxwide", sans-serif;
    font-weight: 700;
    font-style: italic;
    text-shadow: 3px 3px 3px silver;
    font-size-adjust: inherit;
}
.contact {
    grid-column: span 12;
}
footer {
    grid-column: span 12;
    color: black;
    font-family: "owners-xxnarrow", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    font-size: larger;
}
.swiper-container {
    width: 100%;
    overflow: hidden;
    grid-column: span 12;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: contain;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    z-index: 10;
}
.swiper-button-next {
    right: 10px;
}
.swiper-button-prev {
    left: 10px;
}
.swiper-pagination {
    bottom: 10px;
}
.box {
    width:100%;
    border:5px solid #f1044b;
    margin: 10px;
}

@media only screen and (max-width: 767px) {
    header nav ul li a{
        margin-left: 1rem; /* Add spacing between list items */
        text-decoration: none;
        color: #f1044b;
        text-shadow: 3px 3px 3px white;
        font-size: large;
        z-index: 1;
    }

  }