.btn{
  font-size: 20px;
  height: 80px;
  min-width: 240px;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 14px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;

}

.btn{
  background: #1193b3;
  color:#fff;
  transition:0.3s;
  &:hover {
    background:#e1eef1;
    color:#333;
  }
}

