@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

/*  Paramètres Généraux  */
body {
    background-color: #f4f7f6;
    color: #333;
    font-family: "Montserrat", sans-serif;
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}


.main-header {
    background-color: #1a1a1a;

    color: white;
    padding: 60px 20px;
    text-align: center;
}

.main-header h1 {
    margin: 0;
    font-size: 3em;
    letter-spacing: 2px;
}

.soustitre {
    color: #00ff41;
    font-weight: bold;
    text-transform: uppercase;
}

/*  tout les h2  */
h2 {
    border-bottom: 3px solid #1a1a1a;
    display: inline-block;
    padding-bottom: 5px;
}

.moi {
    background-color: rgba(128, 128, 128, 0.555);
    padding: 30px;
    margin: 0px 0;
    border-radius: 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;

}

.moi p {
    margin: 1px 1px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    max-width: 50%;

}

.projet-card {
    background: white;
    padding: 20px;
    margin: 10px 400px 10px 400px;
    border-radius: 10px;
    border-left: 5px solid #1a1a1a;
    border-right: 5px solid #1a1a1a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/*  zoom */
.projet-card:hover {
    transform: scale(98%);
}

/*  Boutons  */
.bouton {
    display: inline-block;
    background-color: #1a1a1a;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 0.9em;
    transition: background 0.3s;
}

/*  Quand on passe au dessus  */
.bouton:hover {
    background-color: #00ff41;
    color: #1a1a1a;
}

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
    margin-top: 40px;

}

.footer p {
    margin: 1px 0;
}