/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: black;
    transition: background-color 0.5s, color 0.5s;
}

.container {
    text-align: center;
}

.text {
    font-size: 4em; /* Augmenter la taille de la police */
    font-weight: bold; /* Mettre le texte en gras */
    margin-bottom: 20px;
    position: relative; /* Positionner le curseur correctement */
}

/* Curseur clignotant */
.cursor {
    animation: blink 1s step-end infinite; /* Animation du curseur */
    font-size: 0.8em; /* Taille du curseur */
}

/* Animation du curseur */
@keyframes blink {
    50% { opacity: 0; }
}

/* Styles du bouton */
button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #f0f0f0;
    cursor: pointer;
    font-size: 1.5em;
    transition: background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #ddd;
}

/* Dark Mode */
.dark-mode {
    background-color: #1a1a1a;
    color: white;
}

.dark-mode button {
    background-color: #333;
    color: white;
}

.dark-mode button:hover {
    background-color: #555;
}