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

body {
  color: #121212;
  background-color: #fff;
  font-family: Vazirmatn, sans-serif;
}

.main {
  display: flex;
  justify-content: center;
  align-items:  center;
  height: 100vh;
}

.main h3 {
  color: #121212;
  font-size: 1.25rem;
  font-weight: 500;
}
