* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

img {
    height: 900px;
    width: 100%;
}

body {
/*    overflow: hidden;*/
}

html {
/*    height: 100vh;*/
}

nav {
    background-color: #b354d9;
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 5000;
}

.logo {
    width: 100px;
    height: 100px;
}

.navul {
    margin-top: 40px;
    padding-left: 20px;
}

.navli {
    display: inline;
    margin-right: 50px;
}

.navli a {
    color: white;
    text-decoration: none;
}

.grillepage {
    position: absolute;
    top: 104px;
    display: grid;
    grid-template-columns: 0.5fr 1.25fr 1fr 0.5fr;
    grid-template-rows: 100%;
    gap: 20px;
}

.pagecontactgauche {
    grid-column: 2/3;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 20% 0 50% 0;
}

.pagecontactgauche p {
    text-align: justify;
    padding-right: 40px;
}

.contactimg {
    grid-column: 3/4;
    object-fit: cover;
    height: 900px;
    width: 100%;
}

.pagecontactdroite img {
    object-fit: cover;
}

/*footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #b354d9;
    
}*/

footer {
    grid-column: 1/5;
    display: flex;
    justify-content: space-between;
    background-color: #b354d9;
}

@media screen and (max-width:1300px) {

    .grillepage {
        grid-template-columns: 0.3fr 1fr 1fr 0.3fr;
    }
}

@media screen and (max-width:800px) {

    .grillepage {
        grid-template-columns: 0.3fr 1fr 0.3fr;
    }

    .contactimg {
        display: none;
    }

}

@media screen and (max-width:800px) {

    .pagecontactgauche p {
        font-size: 15px;
    }

    .pagecontactgauche h3 {
        font-size: 18px;
    }
}

@media screen and (max-width:450px) {

    .grillepage {
        grid-template-columns: 0.15fr 1fr 0.15fr;
    }

    
}