File: /var/www/linde-ai/html/styles/partials/_button.scss
.btn {
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  border-radius: 3px;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  cursor: pointer;
  outline: none;
  border: none;
  &--primary {
    background: var(--color-4);
    color: var(--color-white);
  }
  &--secondary {
    background: transparent;
    color: var(--color-4);
  }
  &--smaller {
    padding: 5px 15px;
    font-size: 18px;
    line-height: 150%;
  }
  &--wide {
    width: 100%;
  }
}