/*==================== GOOGLE FONTS ====================*/
@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;700&display=swap");

/*==================== BASE ====================*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 0 3rem 0;
  font-family: "Vazirmatn", sans-serif;
  background-color: #fff;
  color: #000;
  height: 100vh;
}

h1,
h2,
h3 {
  color: #242329;
  font-weight: 500;
}

button {
  font-family: "Vazirmatn", sans-serif;
  padding: 16px 32px;
  cursor: pointer;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.container {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#count {
  font-size: 1.5rem;
}
