/* BASE CSS - STYLES GLOBAUX */

* {
    box-sizing: border-box; /* Assure que le padding et les bordures sont inclus dans la largeur totale des éléments */
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
}

body {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: #222;
}

h1{
    text-shadow: 0 0 4px rgba(106, 90, 205, 0.2);

}

h1, h2, h3 {
    font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

/* STYLE DES BOUTONS DE RETOUR ET DES LIENS */

.back-btn {
    color: #333;
    font-weight: 500;
    border: 1px solid transparent;
    transition: border-color 2s ease;
    text-decoration: none;
    font-size: 0.9rem;
    background: rgb(221, 221, 221);
    border-radius: 4px;
    padding: 0.5rem 1rem;
}

.back-btn:hover {
    color: #333;
    text-decoration: underline;
    border-color: #555;
}

a {
    color: #6A5ACD;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

/* PETIT EFFET LUMINEUX AU HOVER DES LIENS AVEC SOULIGNEMENT */
a:hover {
    color: #5e37f7;
    border-bottom: 1px solid #6A5ACD;
    text-shadow: 0 0 2px rgba(106, 90, 205, 0.3);
}