* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}
p{
    color: #333;
}
.hideMessage{
    color: #f4f4f9;
}
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
}

section {
    margin: 0 auto;
    width: 50%;

}
.jeu{
    display: flex;
    flex-direction: row;
}

.information {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.information nav {
    text-align: center;
    margin-bottom: 20px;
}

.information ul {
    list-style-type: none;
}

.information li {
    display: inline-block;
    margin-right: 20px;
    font-size: 16px;
}

.message {
    padding: 10px;
    background-color: #fafafa;
    border-radius: 5px;
}

.interactive {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    padding: 10px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4cae4c;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

input[type="text"], input[type="password"] {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
}

label {
    font-size: 16px;
}

form.restart-form {
    text-align: center;
}

form.restart-form button {
    background-color: #d9534f;
}

form.restart-form button:hover {
    background-color: #c9302c;
}
