@import url(/public/css/home.css);
@import url(/public/css/connection.css);
@import url(/public/css/error404.css);
@import url(/public/css/detail.css);
@import url(/public/css/mentionLegal.css);
@import url(/public/css/conditionVente.css);
@import url(/public/css/aPropos.css);
@import url(/public/css/cart.css);
@import url(/public/css/profil.css);

body {
    font-family: Arial, sans-serif;
    line-height: 1.8;
}

h1, h2, h3{
    font-family: "Amiri", serif;
}

/* header */
header {
    color: white;
}
.backgroudNav{
    background: linear-gradient(to top, #e6ba80a0 0%, #eacda396 100%) !important;
    position: fixed;
    min-width: 100%;
}

.title {
    height: 86%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
}

.collapse {
    justify-content: space-around;
    align-content: center;
    text-align: center;
    padding: 10px 30px;
}

.background {
    background-image: url(../img/maison.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
}

.nav-link {
    color: rgb(255, 255, 255);
    font-size: large;
    font-weight: bold;
}

.nav-link:hover{
    color: #151414;
}

h1 {
    font-size: 100px;
}

/* footer */

footer {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    background: #F8F8FF;
    text-align: center;
    padding: 2%;
}

footer a{
    text-decoration: none;
    color: #151414;
}

footer li{
    list-style: none;
}

footer .category{
    font-size: large;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .title {
        height: 40%;
    }

    .collapse{
        align-content: start;
        text-align: start;
        padding: 0;
    }
    
    h1{
        font-size: 50px;
    }

    footer{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}