/* IMPORT DES POLICES */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400');
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css');

/* FONT PERSONNALISÉE */
@font-face {
    font-family: "Handwind";
    src: url("Handwind.ttf");
    font-weight: bold;
}

/* BASE GÉNÉRALE */
body,
html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #172937;
    color: #f0c690;
    box-sizing: border-box; /* Inclus padding et bordures */
}

/* LOGO */
.logo {
    font-family: "Handwind";
    margin: 30px auto; /* Centré horizontalement */
    font-size: 60px; /* Taille standard */
    display: flex;
    justify-content: center;
    color: #f0c690; /* Couleur harmonisée avec la charte */
}

/* TITRE */
.title {
    font-family: "Handwind";
    margin: 20px auto;
    font-size: 35px;
    text-align: center;
    color: #f0c690;
}

/* LIGNE SÉPARATRICE (HR) */
.separator {
    height: 2px;
    width: 100%;
    margin: 15px 0 20px; /* Espacement */
    background-color: #f0c690; /* Couleur cohérente */
    border: none; /* Supprime la bordure par défaut */
}

/* FOOTER */
footer {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    color: #9c7544; /* Couleur harmonisée */
}

/* LIENS DU FOOTER */
footer a {
    color: #9c7544;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
