@import "stylebase.css";

/* Gifts page styles */
#body_header {
    position: relative;
}

#body_header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(126, 126, 126, 0.2)
  );
}

#body_header > img {
  width: 100%;
  height: auto;
  min-height: 400px;
max-height: 500px;
  object-fit: cover;
}

#body_header > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  border: solid 1px rgba(223, 223, 223, 0.25);
  background-color: rgba(223, 223, 223, 0.25);
  backdrop-filter: blur(8px);
}

h1 {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(1.5rem, 2.5vw, 4rem);
}

.list_price {
    color: var(--price_list);
}

.light_background {
    background-color: var(--background_content_light);
}

.signature {
  font-family: "Licorice", cursive;
  font-weight: 400;
  font-style: normal;
}

.btn {
    width: fit-content;
    border: solid 3px var(--background_content);
    background-color: var(--background_content_light);
}