.btn {
  font-family: "Shabnam";
  font-size: .8em;
  padding: 5px;
  outline: none;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn.r {
  border-radius: 20px;
}
.btn.bold {
  font-size: 1em;
  font-weight: bold;
}
.btn.wh {
  min-width: 80px;
  min-height: 30px;
}
.btn.submit {
  color: white;
  background-color: #0081c9;
}
.btn.submit:hover {
  background-color: #1b8fce;
}
.btn.red {
  color: white;
  background-color: #f55050;
}
.btn.red:hover {
  background-color: #f48484;
}

.btn.green {
  color: white;
  background-color: #1daf72;
}
.btn.green:hover{
  background-color: #38cd8f;
}

.btn.secondary{
  color: white;
  background-color: #424242;
}
.btn.secondary:hover{
  background-color: #494949;
}
