html, body, header, nav, div, footer, img {
    margin: 0;
    padding: 0;
    border: 0;
}

/* 
    Styles corp de la page
*/

body {
    font-family: Arial, sans-serif;
    background-position: center;
    background-color: #333;
    background-size: 100%;
    background-repeat: no-repeat;
}

/*
    Styles pour le logo-container
*/

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#logo-container {
    
    width: 100%;
    height: 100%;
    opacity: 15%;
}

/*
    Styles pour le logo
*/

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#logo {
    z-index: -1;
    width: 300PX;
    height: 300PX;
}

/*
    Styles pour le h2
*/

h2{
    position: relative;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 50px;
}

/*
    Styles pour les paragraphes
*/

p {
    position: relative;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 30px;
}

/*
    Styles pour mailto
*/

a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    
}

/*
    Styles pour le contenu principal
*/

.content {
    padding: 20px;
}

/*
    Styles pour le footer (footer)
*/

footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}