*
{
    margin: 0;
    padding: 0;
}

html, body, #bloc_page
{
    width: 100%;
    min-width: 600px;
    height: 100%;
}

body
{
    background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url("../images/fond_site.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    color: black;
    font-family: sansation, "Times New Roman", sans-serif;
    font-size: 16px;
}

header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

header h1
{
    padding: 10px;
    font-family: ViceCitySans;
}

header p
{
    padding: 5px;
}

nav
{
    position: fixed;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    box-shadow: 0 5px 10px -5px black;
}

#menu
{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#menu li
{
    height: 30px;
    list-style-type: none;
}

#menu a
{
    display: inline-block;
    width: 100%;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: white;
    font-size: 1.5em;
    text-decoration: none;
}

#menu a:hover
{
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

#corps_page_footer_display_window
{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: scroll;
    scrollbar-width: none;
}

#corps_page_footer_display_window::-webkit-scrollbar
{
    display: none;
}

#corps_page_footer
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

#corps_page
{
    margin: 0 auto;
    width: 80%;
}

section
{
    margin-bottom: 20px;
    padding : 20px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.35);
    color: white;
}

footer
{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

footer p
{
    padding: 5px;
    color: white;
    text-align: center;
}

footer a
{
    white-space: nowrap;
    color: blue;
}

@font-face
{
    font-family: 'sansation';
    src: url('../polices/sansation/Sansation_Regular.ttf') format('truetype');
}

@font-face
{
    font-family: 'ViceCitySans';
    src: url('../polices/ViceCitySans.otf') format('opentype');
}

@media all and (max-width: 1280px)
{
    #corps_page
    {
        width: 90%;
    }
}

@media all and (max-width: 900px)
{
    #corps_page
    {
        width: 99%;
    }
}

@media all and (max-width: 600px)
{
    
}

@media all and (max-device-width: 480px)
{
    body p
    {
        font-size: 40px;
    }
    
    h1
    {
        font-size: 60px;
    }
    
    h2
    {
        font-size: 55px;
    }
    
    #corps_page
    {
        width: 99%;
    }
}
