/*---- GLOBAL ----*/
* {
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
html,
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
body {
    overflow-y: scroll;
    overflow-x: hidden;
    font-family: 'Montserrat', Verdana, sans-serif;
}
body a {
    text-decoration: none;
    color: #329219;
}
body a:hover {
    color: #003082;
}

#header {
    margin: 50px auto;
    width: 320px;
    text-align: center;
}
.nom-groupe {
    font-family: "Playwrite NO", cursive;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    color: rgba(87, 199, 133, 1);
}
.home-content {
    width: 320px;
    margin: 20px auto;
    text-align: center;
}
.home-content img {
    width: 120px;
}
.definition-groupe {
    font-weight: 800;
}

footer {
    background: #12495e;
    background: radial-gradient(circle,rgba(18, 73, 94, 1) 0%, rgba(87, 199, 133, 1) 94%);
    padding: 50px 10px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}