.button {
  background-color: rgb(178, 0, 0);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 3.40282e38px;
  text-align: center;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: calc(1.25 / 0.875);
}

.button:hover {
  background-color: rgb(142, 0, 0);
}

.button_small {
  padding-inline: 0.75rem;
  font-size: 0.75rem !important;
  line-height: calc(1.25 / 0.875) !important;
}

.button_transparent {
  background-color: transparent;
  border: 2px solid rgb(178, 0, 0);
  color: rgb(178, 0, 0);
}

.button_transparent:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(178, 0, 0);
}

.button_outline-white {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.button_outline-white:hover {
  background-color: #fff;
  color: rgb(178, 0, 0);
}

@media (min-width: 768px) {
  .button {
    font-size: 1rem;
    line-height: calc(1.5 / 1);
  }
}
