@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Main styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #fff;

  background: #5eb5d7;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.counter__inner {
  display: flex;
  justify-content: space-between;

  text-align: center;
}

.counter__target {
  margin-top: 10px;

  font-size: 60px;
}