@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,600,700|Rubik:400,500,700);

body {

    font-family: Rubik;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    /* Ancien (1) Vs Nouveau (2) */
    /* background: linear-gradient(0deg, rgb(24, 23, 29), rgb(30, 29, 35)); */
    background: rgb(24, 23, 29);
    color: #333;
    overflow: hidden;
}

/*************************/
/* Header
/*************************/

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgb(12, 12, 36), rgb(23, 37, 71));
    background: linear-gradient(135deg, rgb(4, 1, 22), rgb(30, 38, 54));
    color: white;
    border-bottom: 3px solid #000;
}

/* partie gauche avec le nom */
.header-left h1 {
    margin: 0;
    font-size: 1.4rem;
}

/* partie droite avfc boutons */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* partie droite aussi,      */
/* pour mettre le sous titre */
.header-subtitle {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.9;
}

/* nav */
nav {
    display: flex;
    gap: 10px;
}

/* style pour chaque bouton */
.nav_pages {
    list-style: none;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    background-color: #041624;
    border-radius: 5px;
    transition: background 0.2s ease;
}

/* style quand souris sur bouton */
.nav_pages:hover {
    background-color: #89a4b6;
    color: #041624;
}

/* style pour le bouton quand   */
/* on est sur la page du bouton */
.nav_pages.active {
    background-color: #ffffff;
    color: #072b47;
    font-weight: bold;
}

/* style pour le gros carré */
/* blanc de l'accueil       */
/* mdrrrr c'est le about    */

.red-alert {
    background-color: rgb(54, 30, 30);
    color: white;

    margin-top: 20px;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.06);
    border-radius: 5px;

    padding: 1rem;
    margin-left: 5rem;
    margin-right: 5rem;
}


.about {
    background-color: rgb(30, 38, 54);
    color: white;

    margin-top: 20px;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, .06);
    border-radius: 5px;

    padding: 1rem;
    margin-left: 5rem;
    margin-right: 5rem;
}