/* Import d'une police sympa depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    background-color: #00393e;
    color: #ffffff;
    line-height: 1.6;
}

header {
    font-family: 'Goldman';
    background-color : #007d69;
    border-color: #007d69;
    border-width: 2px;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    -moz-border-radius-bottomleft:10px;
    -moz-border-radius-bottomright: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}
main{font-family: 'Poppins', sans-serif;}

header h1 {
    font-size: 2.5em;
}

header h2 {
    font-size: 1.5em;
    font-weight: 300;
    margin-top: 10px;
}

h3.qui {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 10px;
}

p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    padding: 0 10px;
}
a{  display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px;
    transition: background-color 0.3s ease;}
a:hover {
    background-color: #1e7e34
}

footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.9em;
    color: #007d69;
    padding: 20px;
    border-top: 1px solid #ccc;
}
.btn-cv {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px;
    transition: background-color 0.3s ease;
}

.btn-cv:hover {
    background-color: #1e7e34;
}
.form-container {
    max-width: 500px;
    margin: 40px auto;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #007d69;
}

.form-container label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1em;
}

.form-container button {
    background-color: #007d69;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.form-container button:hover {
    background-color: #005f52;
}
.php {
    text-align: center;
    font-size: 1.2em;
    margin: 30px auto;
    max-width: 600px;
}