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

/* RESET CSS */
*{
  margin: 0;
  padding: 0;
}

body{
  background-color: #fcfc62;
}

.container{
  width: 100%;
  height: 100vh;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter{
  border: 4px solid black;
  border-radius: 8px;

  width: 600px;
  height: 350px;
  margin: auto;
  padding: 25px;
  text-align: center;
  background: #feffea;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.counter h1{
  font-size: 2rem;
}

#count{
  font-size: 9rem;
}