
    
body {
    display: grid;
    margin: 0px;
    height: 1900px;
    font-family: 'Playfair Display', serif;
    grid-template-areas: "header header"
                         "nav nav"
                         "footer footer";
    grid-template-rows: 0.75fr 5fr 0.5fr;
}


/* Links section */


a {
    color: rgb(255, 255, 255);
}
a:hover {
    font-size: 21px;
}


/* This is the header */


}
header {
    grid-area: header;
    background-color: rgba(255,255,255,0.1);
    grid-template-areas: "header1 header2";

}

#a1 {
    padding-left:1170px;
}
#c1 {
    padding-top: 20px;
 
}
.div1 {
    width: 1250px;
    background-image: url('./caf-ecole3.png');
    background-position: center;
}



/* This is the navigation */


nav {
    grid-area: nav;
    background-color: rgb(255, 255, 255);
}


/* This is the footer */


footer {
    grid-area: footer;
    background-color: rgba( 200, 200, 200,0.25);
    color: rgb(255, 255, 255);
    font-size: 85%;
    display: grid;
    grid-template-areas: "f1 f2 f3";
    grid-template-columns: 1fr 1fr 1fr;
    line-height: 25%;
}
#p {
    font-size: 19px;
    text-align: center;
}
#f {
    padding: 10px 40px 10px 40px;
}
.s1 {
    grid-area: f1;
}
.s2 {
    grid-area: f2;
}
.s3 {
    grid-area: f3;
}

