/* Universal Styles */

html {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    line-height: 1.5;
    color: rgba(0, 0, 0, 1);
}

body {
    background-color: rgba(255, 255, 255, 1);
    text-align: center;
    margin: 0;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: scroll; /* Use overlay scrollbars */
}

main {
    padding: 117px 0 0;
}







/* Menu */

nav {
    padding: 5px 0 5px 0;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: rgba(109, 91, 91, 1);
}

.menu {
    padding: 0 20px 0 0;
    text-align: right;
}

.menu li {
    display: inline;
    padding: 25px 30px;
    font-weight: 700;
    font-size: 20px;
}

.nb_logo_menu {
    width: 30vw;
    vertical-align: top;
    margin: 0 auto;
    padding: 25px 30px;
}







/* Content universal styles */

h1 {
    font-weight: 800;
    letter-spacing: 0.1em;
    font-size: 50px;
    font-family: sans-serif;
    padding: 0 0 50px 0;
    margin: 0 auto;
    color: rgba(109, 91, 91, 1);
}

h2 {
    font-weight: 800;
    letter-spacing: 0.1em;
    font-size: 30px;
    font-family: sans-serif;
    margin: 0 auto;
    color: rgba(0, 0, 0, 1);
}

h3 {
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 22px;
    font-family: sans-serif;
    color: rgba(0, 0, 0, 1);
    font-style: italic;
    margin: 0 auto 40px;
}

p {
    font-size: 18px;
    max-width: 900px;
    margin: auto;
}

a {
    text-decoration: none;
    /* color: rgba(71, 59, 149); */
    color: rgba(163, 53, 204, 1);
    transition: color 80ms ease-out 200ms; 
}

a:hover {
    color: rgba(204, 55, 77, 1);
}







/* Footer */

footer {
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    /* background-color: rgba(201, 194, 179, 1); */
    text-align: center;
    margin: 0;
    padding: 110px 0 50px;
}

footer img {
    vertical-align: sub;
    width: 20px;
}

footer a {
    vertical-align: bottom;
    font-size: 18px;
}

footer p {
    color: rgba(109, 91, 91, 1);
}








/* Sticky Footer */

html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}