body {
    padding: 50px;
    color: #131313;
    font-family: 'Lato', sans-serif;
    background-image: url(../images/clippers.jpg);
}
/* ---- Set up site grid ---- */

.wrapper {
    display: grid;
    grid-template-columns: 100px 1fr 2fr;
    grid-template-rows: auto;
    grid-template-areas: 
        "logo top-title header"
        "main main main"
        "footer footer footer";
        grid-gap: 0px;

    padding: 0;
    margin: 0;
    
}

.logo {
    grid-area: logo;
    padding: 0;
    float: left;
    margin-bottom: 0;
}

.top-title {
    grid-area: top-title;
    padding-right: 40%;
    margin-top: 10px;
    margin-left: 20px;
    color: aliceblue;
}

.header {
    grid-area: header;
    display: grid;
    width: 100%;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;

}

.main {
    grid-area: main;
    background-color: rgba(255, 255, 255, 0.384);  /* very pale grey */
}


.footer {
    grid-area: footer;
    text-align: right;
}

/* ---- End of grid setup ---- */


/* -000- Area styling -000- */

.box {
    margin-bottom: 300px;
    padding: 20px;
    /* border-radius: 10px; */
    background-color: #CCC;
    background: rgba(46, 46, 46, 0); /* Fallback for older browsers without RGBA-support */
    background: rgba(46, 46, 46, 0);
    color: white;
    
}


/* -000- End of area styling -000- */

h1, h2, h3, h4 {
    font-family: 'Ubuntu', sans-serif;
}

/* Responsive image rules */
.responsive {
    width: 130%;
    height: auto;
    margin-bottom: 10px;

}


.info-text
{
    display: flex;
    flex-direction: column;
}

/* Navigation Links */
.nav a {font-weight: bold;}
.nav a:link, .nav a:visited {color: #cecece;} /*dark red */
.nav a:hover {color: #604830; text-decoration: none;} /* chocolate brown */

.na

/* links in page */
a {font-weight: bold;}
a:link{color: #e6e6e6;} /*dark_red */
a:visited{color: #b8b8b8;} /* dark blue */
a:hover{color: #cacaca;}    /* Black*/

.contact {
    font-size: larger;
    margin-left: 5%;
    color: aliceblue;
}

.contact1 {
    margin-left: 1.5%;
    color: aliceblue;
}

.form {
    margin-top: 2%;
}

/* home page photos */
.Photoshome{
    width: 200px;
    float: left;
    border-radius: 3%;
    border: 2px solid #e6e6e6;
    margin-left: 20px;
}

/* Content on service pages */
.Photos{
    width: 200px;
    float: left;
    border-radius: 3%;
    border: 2px solid #e6e6e6;
}

.Photos1{
    width: 200px;
    float: left;
    border-radius: 3%;
    border: 2px solid #e6e6e6;
}

.Boxer{
    width: 10%;
    float: left;
    margin-left: 100px;
}

.Boxer1{
    width: 10%;
    float: left;
    margin-top: -10px;
}
.description{
    float: left;
    clear: both;
    margin-top: 60px;
}

.container:hover{
    transition: 0.3s ease;
    filter: brightness(80%);
}

/* learn more button */
.showhide{
    display: block;
} 

/*media*/
@media(max-width: 767px)
{

    .wrapper {
        display: grid;
        grid-template-columns: 100px 1fr;
        grid-template-rows: auto;
        grid-template-areas: 
            "logo top-title"
            "header header"
            "main main"
            "footer footer";
            grid-gap: 0;    
    }
}

@media(max-width: 1400px)
{
    .Boxer{
        clear:both;
        margin-left:0px;
    }

    .Photoshome{
        clear:both;
        margin-left: 0px;
        margin-top: 20px;
    }

    .Photos1{
        clear:both;
    }
}