@import url('https://fonts.googleapis.com/css?family=Nunito');

body {
    font: normal 1rem Nunito;
    margin: 0;
    background-color: aliceblue;
}

.navbar {
    display: grid;
    grid-template-columns: 2fr repeat(6, 1fr);
    position: absolute;
    width: 100%;
    height: 2rem;
    background-color: white;
    margin: 0;
    padding: 2rem 0;
}


.navbar img {
    height: 70px;
    position: absolute;
    top: 0.8rem;
    left: 5rem;
}

.navbar li {
    list-style: none;
    text-align: center;
}

.navbar .mpc a {
    display: block;
    text-decoration: none;
    color: rgb(0, 153, 32);
    height: 4rem;
}

.navbar .coaching a {
    display: block;
    text-decoration: none;
    color: rgb(43, 80, 142);
    height: 4rem;
}

.navbar .therapie a {
    display: block;
    text-decoration: none;
    color: rgb(255, 119, 51);
    height: 4rem;
}

.navbar .autre a {
    display: block;
    text-decoration: none;
    color: rgb(117, 122, 118);
    height: 4rem;
}

.navbar .mpc li ul {
    display: none;
    padding: 0;
}

.navbar .mpc li:hover ul {
    display: block;
}

.navbar .mpc li ul li {
    background-color: white;
}

.navbar .mpc li ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.9rem;
    height: 3.5rem;
}

.navbar .coaching li ul {
    display: none;
    padding: 0;
}

.navbar .coaching li:hover ul {
    display: block;
}

.navbar .coaching li ul li {
    background-color: white;
}

.navbar .coaching li ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.9rem;
    height: 3.5rem;
}

.navbar .therapie li ul {
    display: none;
    padding: 0;
}

.navbar .therapie li:hover ul {
    display: block;
}

.navbar .therapie li ul li {
    background-color: white;
}

.navbar .therapie li ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.9rem;
    height: 3.5rem;
}

.navbar .autre li ul {
    display: none;
    padding: 0;
}

.navbar .autre  li:hover ul {
    display: block;
}

.navbar .autre li ul li {
    background-color: white;
}

.navbar .autre li ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.9rem;
    height: 3.5rem;
}


.navbar .mpc li ul li a:hover {
    color: white;
    background-color: rgb(0, 153, 32);
}

.navbar .coaching li ul li a:hover {
    color: white;
    background-color: rgb(43, 80, 142);
}

.navbar .therapie li ul li a:hover {
    color: white;
    background-color: rgb(255, 119, 51);
}

.navbar .autre li ul li a:hover {
    color: white;
    background-color: rgb(117, 122, 118);
}

h1 {
    color: rgb(117, 122, 118);
    font-family: Arial, Helvetica, sans-serif;
    font-size: x-large;
    text-align: center;
}

h2 {
    margin-left: 5%;
    color: rgb(117, 122, 118);
    font-family: Arial, Helvetica, sans-serif;
}

p {
    text-align: justify;
    margin-left: 10%;
    margin-right: 10%;
    color: rgb(117, 122, 118);
    font-family: Arial, Helvetica, sans-serif;
}

.texte {
    background-color: rgba(255,255,255,0.7);
    margin-left: 10%;
    margin-right: 10%;
}