html {
    background-image: url("../images/20230211_180035.jpg");
    background-size:cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Cormorant Garamond', serif;
}

body{
    margin: 0;
    color: black;
    background-color: rgba(255, 255, 255, 0.4);
}

.menu {
    background-color: rgba(255, 255, 255,0.95);
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 0;
    z-index: 1;
    position: sticky;
    top: 0;
}
  
.menu-section {
    display: flex;
    flex-direction: column;
    margin-left: 10vw;
}
  
.menu-section a {
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    width: 60vw;
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    color: black;
    border: 0.15em solid  grey;
    border-radius: 2em;
}
  
.menu img {
    cursor: pointer;
    height: 4em;
    width: auto;
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    margin-right: 1em;
    margin-left: 5vw;
}

.current-section {
    color: darkblue;
    background-color: cornflowerblue;
}

.intro {
    display: flex;
    flex-direction: column;
    background-color: rgba(255,255,255,0.9);
    align-items: center;
    text-align: center;
    padding: 0 1em;
}

.intro h1 {
    font-size: 3rem;
    margin-bottom: 0.5em;
}

.intro h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.5rem;
}

.text-white {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0 1em;
    background-color: rgba(255,255,255,0.9);
    color: black;

    width: 75%;
}

.text-black {
    margin: 0;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    padding: 0 1em;
    background-color: rgba(30,30,30, 0.9);
    color: rgb(214, 227, 231);

    width: 75%;
}

/*Gestion aspect des liens hypertextes*/

nav a:hover {
    background-color: cornflowerblue;
    border-color: darkblue;
}

.current-section:hover {
    background-color: cornflowerblue;
    border-bottom: 0.2em solid darkblue;
}