@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-image: url(../images/fond-etoile.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    
}

header{
    display: flex;

}

/*--------- icone ---------*/

.burger{
    display: none;
    width: 50px;
    height: 50px;
    position:fixed;
    top: 30px;
    left: 30px;
}

.burger:hover{
    width:52px;
    height: 52px;
}

.facebook{
    width: 50px;
    height: 50px;
    position:fixed;
    top: 30px;
    right: 30px;
    background-image: url(../images/facebook.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.facebook:hover{
    width:52px;
    height:52px;
}



/*--------- nav ---------*/

header nav{
    width: 975px;
    margin: 0px auto;
    display: flex;
}

nav ol{
    display: flex;
    margin: auto;
    padding: 25px 0;

}

ol a{
    font-family: "Playpen Sans", cursive;
    font-weight: bold;
    margin: auto;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    border-bottom: none;
    text-decoration:none;
}


ol a:hover{
    color: gold;
}

a.noel:hover {
    color: green;
}

/* ----------------------- logo */

.haut{
    display: flex;
}

.haut section{
    display: flex;
    margin: 45px auto 45px auto;
}

.haut img{
    height: 200px;
    margin: auto;
}

.haut div{
    display: flex;
    flex-direction: column;
}

.haut div h1{
    font-family: "Playpen Sans", cursive;
    font-size: 1.4rem;
    color: gold; 
    margin: auto 0 10px auto;
}

.haut div h3{
    font-family: "Playpen Sans", cursive;
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    margin: 10px 0 auto auto;
}

/* ----------------------- realisation */

.bas{
    display: flex;
    flex-direction: column;
    margin:0 auto 45px auto;
    padding: 10px;
    border-style:double;
    border-width: 2px;
    border-color: gold;
    background-color: black;
}

.bas p{
    margin: 5px auto;
    color: white;
    font-size: 21px;
}

.bas p strong{
    color: gold;
}

.texte{
    display: flex;
}

.texte section{
    width: 620px;
    margin: auto;
}

.texte h2{
    font-family: "Playpen Sans", cursive;
    text-align: center;
    font-size: 30px;
    padding-bottom:15px;
    color: gold; 
}

.texte p{
    font-family: "Playpen Sans", cursive;
    font-size: 17px;
    color: white; 
}

/* ----------------------- 1024 x 768 */

main{
    display: flex;
    flex-direction: column;
}

.splide__slide img {
    width: 100%;
    height: 100%;
}

.carousel{
    height: 465px;
    width: 620px;
    margin: 30px auto 300px;
}


/* ----------------------- page contact */

.contact{
    margin: 30px auto 300px;
    width: 400px;
    height: 200px;
    background-image: url(../images/contact.png);
    background-repeat: no-repeat;
    background-size: cover;
}