*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    background-image: url('images/fond\ créactions.png');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: none;

    background-color: rgb(0, 0, 0);
    cursor: url('images/curseur.png'), auto ;
}



.header{
    margin-top: -5vh;
    position: absolute;
    height: 2%;
    width: 99%;
    display: flex;
    z-index: 100;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
}


.navbar{
    float: left;
    z-index: 1;
}

.navbar a {
    position: relative;
    margin-left: 30px;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 20px;
    color:white;
}

.navbar a span{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgb(255,139,7);
    z-index: -1;
    border-radius: 20px;
    border-bottom: 3px  solid rgb(187,91,2);
}

.navbar a:hover{
    color:rgb(197,13,13);
    cursor: url('images/curseur_appuie.png'), auto;
}

section{
    display: flex;
    margin-top: 10vh;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    height:560px;
}

section img {
    border-radius: 20px;
    width: 0;
    flex-grow: 1;
    object-fit: cover; 
    opacity: 0.7;
    transition: .5s ease-in-out;
}

section img:hover{
    cursor: url('images/curseur_appuie.png'), auto;
    width: 450px;
    opacity: 1;
} 

#container{
    flex-direction: row;
    gap: 10px;
    margin: auto;
    align-items: center;
    text-align: center;
    position: relative;
    display: flex;
    margin-top: 11vh;
}