:root {
  --background-color: #ffffff;
  --text-color: #000000;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #000000;
    --text-color: #ffffff;
  }
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0 1rem;
    background-color: var(--background-color);
    color: var(--text-color);
}

h1 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.counter {
    font-size: 2.9rem;
    font-weight: bold;
    text-align: center;
		font-family : 'Monaco';
}

.crashes-counter {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.lives-counter {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2rem;
  }
	
	.counter {
    font-size: 5rem;
	}
}
