@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap');

* {
  box-sizing: border-box;
}
body {
  font-family: 'Vazirmatn', sans-serif;
  background-color: #bad8b6;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-container {
  background-color: #e1eacd;
  /* color: #f9f6e6; */
  border: 1px #f9f6e6 solid;
  padding: 1rem 2rem;
  border-radius: 1rem;
  /* box-shadow: 10px 10px 5px 12px #cfd8dc; */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.btns {
  margin: 0.1rem 0.2rem;
  margin-top: 0.7rem;
}
.btn-svg {
  background-color: #e1eacd;
  width: 1.4rem;
  height: 1.4rem;
  padding: 0.25rem;
  border-radius: 100%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}
.btn-text {
  text-align: center;
  font-size: 0.8rem;
  background-color: #e1eacd;

  padding: 0.3rem 0.6rem;
  border-radius: 0.9rem;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}
.btns-space {
  display: flex;
  justify-content: space-between;
}
