@import "colors.css";

.purchase_options {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;

  @media (min-width: 1024px) {
    flex-direction: row;
  }
}

.purchase_option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-2);
  border-radius: 10px;
  padding: 1em;
  box-shadow: 0 0 12px var(--color-2);
  border: solid;
  border-color: var(--color-3);
  border-width: 2px;
  margin: auto;
  box-sizing: border-box;
  width: 100%;

  @media(min-width: 1024px) {
    width: 30%;
    height: 14rem;
  }
}

.purchase_option h2 {
  margin-top: 0;
}
