*{
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}


body{
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    justify-content: space-between;    
    /*background: #9AAAC4;
    background: linear-gradient(180deg,rgba(154, 170, 196, 1) 0%, rgba(229, 190, 188, 1) 50%, rgba(233, 149, 161, 1) 75%, rgba(133, 138, 162, 1) 100%);
    */
}

nav, .content{
    padding: 8px;
}

nav{
    display: flex; 
    flex-direction: column;
    row-gap: 5px;
    padding-top: 20px;
}

#sub-menu{
    display: flex; 
    flex-direction: row;
    justify-content: end;
    width: 100%;
    column-gap: 15px;
   
}

.nav-item{
   a{ font-size: 14px;}
}


#nav-logo{
    display: flex;
  flex-direction: row;
  justify-content: center;
}
a{
    color: black;
}

#logo{
    max-width: 89%;
}

#breve{
    background-color:#ffffff ;
    margin-top: 5px;
    font-size: 90%;
    background-color: black;
    color: rgb(255, 255, 255);
    height: auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;}


.content{
    display: flex;
    flex-direction: column;
    width: 100vw;
    row-gap: 10px;
    justify-content: space-evenly;
}


.border{
    border-style: solid;
    padding: 5px;
    border-width: 1.5px;
}

.text{
    margin: 20px auto 20px auto;
    width: 100%;
    p{
        font-size: 13px ;
    }
}

.summary{
    font-size: 10px;
    margin-left: 10%;
    font-style: italic;
}

footer{
    background-color: black;
    font-size: 10px;
    text-align: center;
    padding-top: 4px;
    padding-bottom: 4px;

    p{color: white}
}

#insta-contact{
    width: 0.5cm;
}

#under{
    text-decoration: underline;
}

img{
    width: 100%;
}

/*Ordinateur */
@media only screen and (min-width: 768px) {
    .content{
        display: flex;
        flex-direction: row;
        column-gap: 10px;
    }
    .product{width: 100%;
        .summary{margin-left: 50%;}}
    #logo{max-width: 37%;}

    #main-text{
        width: 50%;
    }
    
    #breve{font-size: 110%;}

    #page-propos{
        flex-wrap: wrap;
        
        section{
            max-width: 50%;
        }
    }
}