| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- body {
- min-height: 100dvh;
- margin: 0;
- display: flex;
- flex-direction: column;
- font-size: 1.2rem;
- }
- #mainStats {
- display: flex;
- flex-direction: column;
- gap: 0.5rem;
- margin: auto;
- justify-content: center;
- align-items: center;
- padding-inline: 1rem;
- }
- #mainStats > .message {
- background-color: lightcoral;
- border: 2px solid red;
- padding: 0.5rem 2rem;
- border-radius: 1rem;
- }
- #mainStats .stats {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- align-items: stretch;
- gap: 2rem;
- }
- #mainStats .stats .wrapper {
- display: flex;
- gap: 2rem;
- }
- #mainStats .stats .values {
- background-color: #dddddd;
- padding: 0.5rem 2rem;
- border-radius: 1rem;
- }
|