/*
body
contentPage
header
contentBlock
block1
vitrine
block2
tableau
palette
block3
autres
contact
*/
/* @media screen and (max-width: 800px){
    Block {
    }
} */

*{
    margin: 0;
    padding: 0;
}

body{
    background: linear-gradient(to top right, #EDBFF0, #A1D9FA);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



.contentBlock{
    /* border: 5px solid grey; */
    width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    padding: 5px;
    flex-direction: column;
}  

@media screen and (max-width: 1014px) {
    .contentBlock{
        /* border: 5px solid grey; */
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 5px;
        padding: 5px;
    }  
}

@media screen and (max-width: 700px) {
    .contentBlock{
        /* border: 5px solid grey; */
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 5px;
        padding: 5px;
        flex-direction: column;
    }  
    .block2{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-direction: column;
    }

    .logo{
        margin: 15px;
    }
}

.block1{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    margin-bottom: 20px;
    text-align: center;
}
.block2{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    text-align: center;
}
.block3{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    margin-top: 20px;
}

.vitrine, .tableau, .palette, .logo, .autres {
    border: 1px solid black;
    width: 200px;
    height: 200px;
    box-shadow: 4px 4px 7px black;
    transition: 0.8s;
    overflow: hidden;
}


.vitrine:hover, .tableau:hover, .palette:hover, .autres:hover {
    scale: 1.1;
    transition: 0.8s;
}

.contact{
    margin: 25px;

}

a{
    text-decoration: none;
    color: black;
}