@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400;500;600;700&display=swap');

body {
    background-color: rgb(18, 18, 18);
    color: rgb(255, 255, 255);
    margin: auto;
    max-width: 700px;
    width: 90%;
    text-align: justify;
    font-size: large;
    padding: 60px 20px;
    font-family: "Domine", serif;
    font-weight: 400;
    line-height: 1.6;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .titre {
    margin: 0;
}

nav .reseaux {
    display: flex;
    gap: 15px;
}

a {
    color: rgb(59, 112, 192);
}

h1 {
    font-size: 2.3em;
    font-weight: 700;
}

h2 {
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 30px;
}

h3 {
    font-size: 1em;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
}

strong {
    font-weight: 700;
    color: rgb(59, 112, 192);
}

/* Pour tablettes */
@media (max-width: 768px) {
    body {
        width: 90%;
        padding: 40px 20px;
        font-size: medium;
    }
}

/* Pour mobile */
@media (max-width: 480px) {
    body {
        width: 95%;
        padding: 30px 15px;
        font-size: medium; /* Au lieu de small */
    }
}