body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, #fdfdfd 0%, #0056b3 100%);
    background-repeat: no-repeat;
    background-size: cover;
    animation: gradientAnimation 5s ease infinite alternate; /* Animation du dégradé */
    background-size: 200% 200%; /* Taille du dégradé pour l'animation */

}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s, transform 1s;
}

.container.show {
    opacity: 1;
    transform: scale(1);
}

.button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background-color: #0070E0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background-color: #0056b3;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #333;
}
table {
    width: 300px;
    border-collapse: collapse;
    margin: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #489df8; /* Bleu */
    color: #fff;
}

tr:nth-child(even) {
    background-color: #f2f2f2; /* Gris clair pour les lignes paires */
}

tr:hover {
    background-color: #e2e2e2; /* Gris plus foncé au survol */
}

form {
    display: flex;
    flex-direction: column;
    justify-content: end;
    flex-wrap: wrap;
    margin: 20px;
}

.form-group {
    display: flex;
    width: 100%;
    gap: 20px;
}

label {
    width: 200px;
    display: block;
    margin-bottom: 5px;
    text-align: right;
}

input[type="text"] {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #007bff; /* Bleu */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3; /* Bleu plus foncé au survol */
}
.message {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.emoji {
    font-size: 80px;
}