@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
/* Réinitialisation des styles */
* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles de base */
body {
    background-color: #000;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
}

.container{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#monTitre {
    font-size: 6rem;
    letter-spacing: 40px;
    margin-bottom: 70px;
}

#compteur{
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
    margin-bottom: 30px;
    font-size: 8rem;
}

#bouton {
    background-color: #fff;
    color: #000;
    font-weight: 700;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#bouton:hover {
    cursor: pointer;
    background-color: #000;
    color: #fff;
}

