.primary-btn {
  background-color: var(--color-primary);
  border-radius: 10rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
	align-items: center;
	justify-content: center;
  white-space: nowrap;
  border: none;
  width: fit-content;
  height: fit-content;
  transition: all .2s;
  padding: 1.5rem 2.5rem;
}

.primary-btn:hover {
  background-color: rgb(189, 101, 0);
  transform: translateY(-3px) scale(1.1);
}
