/*  CORES MAISONNEUVE 

#0079c2 azul
#003e7e azul escuro
#99d7db; azul agua
#e6e7e7 cinza claro
42484c cinza escuro


*/

* {
    margin: 0;
    padding: 0;
    outline: 0px dashed red;
}

body {
    font-family: 'DM Sans', sans-serif;
}

header {
    margin: 30px;
    
}

main {
    flex-grow: 1;
}

p {
    font-size: 1rem;
    line-height: 1.5rem;
}

h1 {
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 1.1rem;
}

h2 {
    text-transform: uppercase;
    font-size: 1.6rem;
    line-height: 2rem;
}

h3 {
    text-transform: uppercase;
    font-size: 1.1rem;
}

.header-info {
    margin-bottom: 20px;
}

.header-info h3{
    font-size: 1.5rem;
    text-transform: none;
    line-height: 3rem;
}

.medaillon img{   
	border-radius: 50%;
	height: auto;

}

img {
    max-width: 100%;
}

a {
    color:#0079c2;
    text-decoration: none;
}

a:hover {
    color:#003e7e;
    text-decoration: underline;
}

/* Navigation version large */

@media (min-width: 700px) {

   body {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    }

    main {
        display: flex;
        flex-direction: row;
        gap: 30px;
        margin: 30px;
    }

    header {
        display: flex;
        flex-direction: row;
        gap: 30px;
        justify-content: space-between;
    }

    header h1 {
        font-size: 2rem;
        line-height: 2rem;
    }

    .top-title {
        text-align: end;
     }

    .main-content {
        max-width: 80ch;
    }

    ul {
        list-style-type: none;
        line-height: 1.8rem;
        margin: 15px 0;
    }

}

/* Navigation version étroite */

@media (max-width: 700px) {

    header {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 10px;
    }

    .top-title h1{
        text-align: start;
        font-size: 1.7rem;
        line-height: 1.7rem;
     }

    nav {
        min-width: 20ch;   
    }
    
    main {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 10px;        
    }

    h3 {
        font-size: 1rem;
        line-height: 1.2rem;
    }


    ul {
        font-size: 0.9rem;
        line-height: 1.6rem;
        margin: 10px 0;
    }

    .main-content {
        max-width: 50ch;
    }

    video {
        width: 100%;
    }

}

footer {
    margin-top: auto;
    margin-bottom: auto;
    background-color: #003e7e;
    color: #0079c2;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.accueil-link a{
    color: white;
    text-decoration: none;
}

.accueil-link a:hover{
    color:#99d7db;
    text-decoration: underline;
}

.info img{
    margin: 20px 0;
}

.info video{
    margin: 20px 0;
}