/* Styles CSS pour la mise en page */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
}
.main_page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100vh;
    width: calc(100vw - 300px);
    flex: 1;
}

.bandeau_general {
    height: 139px;
    width: 100%;
    padding: 0 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: url(../img/bandeau-help.jpg) fixed no-repeat;
}


.title {
    color: #1c2833;
    text-decoration: none;
    font-family: sans-serif;
    background-color: #EDEFE3;
    padding: 5px;
    transition: .2s ease-in-out;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.title:hover {
    font-family: sans-serif;
    text-decoration: none;
    padding: 5px;
    background-color: #64c5c9;
    color: white;
}

.content {
    height: calc(100vh - 139px);
    width: 90%;

    margin: 0 auto;

    overflow-y: auto;

    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.page {
    width: calc(33% - 40px);
    margin: 20px;

    font-family: sans-serif;
    padding: 5px;
    color: #1c2833;
    text-decoration: none;
    background-color: #EDEFE3;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    transition: .2s ease-in-out;

    font-size: 1.2rem;
    letter-spacing: 1px;
}

.page:hover {
    font-family: sans-serif;
    text-decoration: none;
    padding: 5px;
    background-color: #64c5c9;
    color: white;

    box-shadow: 0px 2px 6px 0 black;

    transition: .2s ease-in-out;
}