html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;      /* prevent scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
    touch-action: none;    /* prevent mobile swipe scroll */
    background: #EEAECA;
    background: linear-gradient(342deg,rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
}

.container {
    display: flex;
    flex-direction: column; /* or row, depending on layout */
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 90%;
    text-align: center;
    height: 100vh;
}
.number {
    font-family: arial;
    max-width: 90%;
}

.number p {
    font-size: 3.5rem; /* just a bit bigger */
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none; /* Safari/Chrome */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE/Edge */
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(1);
}

.title {
    font-family: Arial, Helvetica, sans-serif;
}

.count {
    font-weight: bolder;
}