@media (min-width: 800px) {

    section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 50px;
        background-color: whitesmoke;
        border: 1px blue ridge;
        text-align: center;
    }

    section picture img {
        height: 100%;
    }

    section div h2 {
        text-decoration: underline;
        margin-top: 120px;
        margin-bottom: 20pt;
    }

    nav ul li{
        display: block;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        text-align: center;
        margin: 0 55px 0 55px;
    }

    nav ul a {
        font-size: 14pt;
    }

    
    .footerBase {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: auto auto;
    }

    .footerImg01{
        grid-column: 1/2;
		grid-row: 1/2;
        margin: auto;
    }

    .contact {
        grid-column: 2/4;
		grid-row: 1/2;
		margin: auto;
    }
	
    .footerImg02 img{
		width: 800px;
		padding: 7%;
		
    }

    footer picture img{
        background-color: rgba(125, 133, 161, 0.774);;
    }

    #toggleMenu {
        display: none;
    }


}