/*
Auteur: Gaël Quartenoud
Date: 11.01.2023
Description: Le code CSS de mon site
*/

body{
    background: linear-gradient(90deg, rgba(253,253,253,1) 0%, rgb(73, 73, 66) 100%);
    margin: 20px;
    font: arial;
}

header{
    text-align: center;
    text-decoration: underline;
    font-weight: bolder;
    padding: 20x;
    justify-content: center;
    height: 20%;
}

nav > div{
    background: black;
    display: flex;
    justify-content: space-around;
    padding: 30px;
    color: white;
}

nav{
    display: flex;
    justify-content: center;
    text-decoration: none;
    height: 100%;
    margin-top: 5%;
    background-color: black;
}

nav > :hover{
    transform: scale(1.1);
    transition-duration: 500ms;
    background-color: white;
    color: black;
    opacity: 100%;
}

.Image_accueil{
    text-align:center;
    width: auto;
    margin-top: 5%;
}

footer{
    background: linear-gradient(90deg, rgb(153, 152, 152) 0%, rgb(8, 8, 8) 100%);
    width: 100%;
    margin-top: 5%;
    border-color: white;
    height: 10px;
    color: white;
    display: flex;
    justify-content:space-around;
    margin-top: 10%;
    padding: 60px;
}

h1{
    width: 100%;
}

hr{
    border-color: red;
    height: 100px;
}

.Paragraphe-accueil{
    text-align: justify;
}

.Paragraphe{
    display: flex;
    justify-content: center;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 600px) {
nav{
    flex-direction: column;
}
hr{
    width:300px;
    height: 0px;
}
}

h2{
    text-align: center;
    font-weight: bolder;
}

#Logo_instagram{
    height: 30px;
}