* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default !important;
    user-select: none !important;
}

body {
    background-image: url("fond.webp");
    background-size: cover;
    color: black;
}

@font-face {
    font-family: "digit";
    src:
        url("digital-7 (mono).ttf") format("truetype");
    font-weight: bold;
}

.full-width-text {
    font-family: "digit", sans-serif;
    color: black;
    font-size: 20vw;
    /* Remplit toute la largeur */
    white-space: nowrap;
    /* overflow: hidden; */
}

.date-text {
    font-family: "digit", sans-serif;
    color: black;
    font-size: 7vw;
    /* Plus petit que l'heure, mais toujours grand */
    white-space: nowrap;
    /* overflow: hidden; */
}

.clock {
    font-family: 'digit', sans-serif;
    color: black;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    /* Empêche les retours à la ligne */
}

#horloge {
    font-family: 'digit', sans-serif;
    color: black;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

#semaine {
    font-family: 'digit', sans-serif;
    color: black;
    font-size: 3vw;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

;