body {
    padding: 50px;
    color: #131313;
    font-family: 'Lato', sans-serif;
    background-image: url(../images/curry2.png);
}
/* ---- 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;
    padding-left: 20px;
    float: left;
    margin-bottom: 0;
}

.top-title {
    grid-area: top-title;
    padding-right: 40%;
    margin-top: 10px;
    margin-left: 20px;
}

.header {
    grid-area: header;
    display: grid;
    width: 100%;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;

}

.main {
    grid-area: main;
    background-color: #EEE;  /* very pale grey */
}


.footer {
    grid-area: footer;
    text-align: right;
}

/* ---- End of grid setup ---- */


/* -000- Area styling -000- */

.box {
    padding: 20px;
    /* border-radius: 10px; */
    background-color: #CCC;
    background: rgb(255, 255, 255); /* Fallback for older browsers without RGBA-support */
    background: rgb(255, 255, 255);
    
}


/* -000- End of area styling -000- */

h1, h2, h3, h4 {
    font-family: 'Ubuntu', sans-serif;
}

/* Responsive image rules */
.responsive {
    width: 100%;
    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: #000000;} /*dark red */
.nav a:hover {color: #604830; text-decoration: none;} /* chocolate brown */


/* links in page */
a {font-weight: bold;}
a:link{color: #000000;} /*dark_red */
a:visited{color: #000000;} /* dark blue */
a:hover{color: #000;}    /* Black*/

.contact {
    font-size: larger;
    margin-left: 1.5%;
}

.contact1 {
    margin-left: 1.5%;
}

.form {
    margin-top: 2%;
}

/*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;    
    }
}