body {
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;

    display: flex;
    justify-content: center;  /* horizontal */
    /*align-items: center;*/      /* vertical */
    min-height: 100vh;        /* ocupa altura da tela */
}

#count{
    color:white
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 250px;
}

