* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Clarendon Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Clarendon Regular"), url("./ClarendonRegular.woff") format("woff");
}
body {
  background-color: black;
  font-family: "Clarendon Regular";
  color: white;
  min-height: 100vh;
  margin: 1vh 1vw;
  padding: 1vh 1vw;
  align-items: center;
}
body hr {
  width: 80%;
  height: 2px;
  background: linear-gradient(to left, #4b6cad, #72419d);
  margin: 40px auto;
  border: none;
  opacity: 0.8;
}

.title404 {
  margin: 20px auto;
}

.body404 {
  font-size: clamp(1.5rem, 2vw, 3rem);
  max-width: 90vw;
  color: white;
  margin: 30px 40px;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  main .coltrane404 {
    width: 100%;
  }
  main .coltrane404 a img {
    width: 80%;
    height: auto;
    padding: 5px;
  }
}
body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-auto-flow: column;
  gap: 5px;
  text-align: center;
  place-items: center;
  max-width: 100%;
  height: 100vh;
  grid-template-areas: "header" "hr1" "welcome" "hr2" "main" "hr4" "footer";
}

.header {
  grid-area: header;
  margin: 40px auto 20px;
}
.header h1 {
  font-size: clamp(4rem, 2vw, 6rem);
  background: linear-gradient(to left, #2551a8, #72419d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3), 0px 0px 10px rgba(66, 135, 245, 0.6);
  letter-spacing: 0.15em;
}

.hr1 {
  grid-area: hr1;
  margin: 10px auto;
}

.welcome {
  grid-area: welcome;
  margin: 10px auto;
  padding: 10px;
  width: 100%;
  max-width: 1000px;
  height: auto;
}
.welcome p {
  font-size: clamp(1.5rem, 2vw, 3rem);
  max-width: 90vw;
  color: white;
  margin: 30px 40px;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  letter-spacing: 0.08em;
}
.welcome .mediaPlayer {
  width: 40%;
  margin: 10px auto;
}
.welcome .mediaPlayer button {
  width: 150px;
  margin: 0px auto 10px;
  height: auto;
}
.welcome .mediaPlayer button img {
  width: 150px;
  height: auto;
}
.welcome .separator {
  width: 90px;
  height: 5px;
  padding: 10px;
  margin: 100px auto;
}

.hr2 {
  grid-area: hr2;
}

.main {
  grid-area: main;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 10px auto;
  padding: 10px;
  max-width: 100%;
  height: 100%;
}
.main .subGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  grid-auto-flow: row;
  place-items: center;
  gap: 5px 2px;
  font-size: 2rem;
  width: 100%;
  height: 100%;
}
.main .hr3 {
  margin: 50px auto;
  height: 10px;
}
.main .purchaseDisplay {
  width: 90%;
  height: auto;
  padding: 2px;
  margin: 10px auto;
}
.main .purchaseDisplay .carritoDisplay {
  font-size: clamp(1.5rem, 2vw, 3rem);
  max-width: 90vw;
  color: white;
  margin: 30px 40px;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  letter-spacing: 0.08em;
}
.main .purchaseDisplay .carritoDisplay p p {
  margin: 5px auto;
  line-height: 1.5;
}
.main .purchaseDisplay .montoCompra {
  margin: 5px auto;
  font-size: clamp(1.5rem, 2vw, 3rem);
  max-width: 90vw;
  color: white;
  margin: 30px 40px;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  letter-spacing: 0.08em;
}
.main .purchaseDisplay .botonesCompra {
  margin: 10px auto;
  width: 80%;
  height: 150px;
}
.main .purchaseDisplay .botonesCompra button {
  height: 150px;
  width: 150px;
  margin: 5px auto;
  padding: 5px;
}
.main .purchaseDisplay .botonesCompra button img {
  width: 100%;
  height: auto;
  padding: 5px;
  transition: 3s linear;
}
.main .purchaseDisplay .botonesCompra button img:hover {
  transform: scale(1.05);
}
.main .history {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 2vw, 1.5rem);
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  margin: 40px auto 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3), 0px 0px 10px rgba(66, 135, 245, 0.6);
  letter-spacing: 0.1em;
  min-height: 5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 80%;
  height: 100%;
  padding: 10px;
  margin: 20px auto;
  border: 4px solid transparent;
  border-image: linear-gradient(to left, #4b6cad, #72419d) 1;
  border-image-slice: 1;
}
.main .history .wipeHistoryBtn {
  margin: 10px auto;
  padding: 10px;
  font-size: calc(1rem + 0.5vw);
  min-width: 40px;
  color: white;
  background: linear-gradient(to right, #2551a8, #72419d);
  border: 4px solid black;
  border-radius: 10px;
}
.main .history .historyDropdown {
  min-height: 80px;
  height: auto;
  overflow-y: auto;
  padding: 10px;
  text-align: left;
}
.main .history .historyDropdown p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 2vw, 1.5rem);
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  margin: 40px auto 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3), 0px 0px 10px rgba(66, 135, 245, 0.6);
  letter-spacing: 0.1em;
  min-height: 5rem;
  justify-content: left;
  margin: 15px auto;
}
.main .history .historyDropdown p .historyTitle {
  text-decoration: underline;
}
.main .history .historyDropdown .historyList {
  padding-left: 20px;
  margin-bottom: 20px;
  list-style-type: none;
}
.main .history .historyDropdown .historyList .historyItem {
  margin-bottom: 30px;
  margin-left: 20px;
  text-align: right;
  max-width: 100%;
}
.main .history .historyDropdown .historyList .historyItem .totalPrice {
  font-size: clamp(1.5rem, 2vw, 3rem);
  max-width: 90vw;
  color: white;
  margin: 30px 40px;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  letter-spacing: 0.08em;
  text-align: right;
  justify-content: right;
  font-style: italic;
}

.footer {
  grid-area: footer;
  height: auto;
  width: auto;
  max-width: 60vw;
  padding: 40px 10px;
  margin: 5px auto;
}
.footer img {
  height: auto;
  width: 550px;
  max-width: 100%;
  transition: 2s linear;
}
.footer img:hover {
  transform: scale(1.15);
}

/*Album Card Formatting*/
.albumContainer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin: 10px auto;
  padding: 10px;
}
.albumContainer .flipContainer {
  perspective: 1000px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.albumContainer .flipContainer .flipCard {
  position: relative;
  width: 100%;
  height: 400px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  margin: 20px auto;
}
.albumContainer .flipContainer .flipCard .albumFront, .albumContainer .flipContainer .flipCard .albumDescription {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.albumContainer .flipContainer .flipCard .albumImage {
  z-index: 2;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s linear;
}
.albumContainer .flipContainer .flipCard .albumImage:hover {
  transform: scale(1.05);
}
.albumContainer .flipContainer .flipCard .albumDescription {
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: calc(0.6rem + 0.5vw);
  transform: rotateY(180deg);
  z-index: 1;
  overflow: hidden;
  word-wrap: break-word;
  padding: 5px;
  margin: 1rem auto;
  box-sizing: border-box;
  border-radius: 10px;
}
.albumContainer .flipContainer .flipCard .albumDescription span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-size: inherit;
}
.albumContainer .flipContainer .flipCard.flipped {
  transform: rotateY(180deg);
}
.albumContainer .flipContainer .flipCard.flipped .albumImage {
  transform: scale(0.5);
}
.albumContainer .albumTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 2vw, 1.5rem);
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  margin: 40px auto 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3), 0px 0px 10px rgba(66, 135, 245, 0.6);
  letter-spacing: 0.1em;
  min-height: 5rem;
}
.albumContainer .price {
  margin: 2rem auto;
}
.albumContainer .botones {
  margin: 10px auto;
  gap: 20px;
}
.albumContainer .botones button {
  font-size: 20px;
  height: 40px;
  min-width: 40px;
  margin: 5px auto;
}

/*Media Queries*/
@media (max-width: 1024px) {
  body {
    width: 100%;
  }
  body .header {
    width: 80%;
  }
  body .welcome .separator {
    margin: 50px auto;
  }
  body .main .subGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    place-items: justify;
    gap: 20px 10px;
    margin: 10px auto;
  }
  body .main .subGrid .albumContainer .flipContainer {
    margin: 0px auto;
  }
  body .main .subGrid .albumContainer .flipContainer .flipCard .albumDescription span {
    overflow: scroll;
    height: 100%;
    font-size: clamp(2rem, 2vw, 1.5rem);
  }
  body .main .subGrid .albumContainer .albumTitle {
    margin: 1rem auto;
    min-height: 8rem;
    font-size: clamp(2rem, 2vw, 1.5rem);
  }
  body .main .subGrid .albumContainer .botones {
    margin: 15px auto;
    width: 60%;
  }
  body .main .subGrid .price {
    font-size: clamp(2.5rem, 2vw, 1.5rem);
    margin: 2rem auto;
  }
  body .main .history .historyDropdown p {
    font-size: clamp(1.5rem, 2vw, 1.5rem);
    word-break: keep-all;
    max-width: 100%;
  }
  body .main .history .historyDropdown .historyList .historyItem .totalPrice {
    font-size: clamp(1.5rem, 2vw, 1.5rem);
  }
  body .footer {
    height: auto;
    min-width: 80%;
    width: 100%;
    padding: 5px;
    margin: 5px auto;
  }
  body .footer figure a img {
    height: auto;
    width: 100%;
    transition: 2s linear;
  }
  body .footer figure a img:hover {
    transform: scale(1.15);
  }
}
@media (max-width: 768px) {
  body .main .header h1 {
    font-size: clamp(2.5rem, 2vw, 3rem);
  }
  body .main .subGrid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    place-items: center;
    gap: 50px 2px;
  }
  body .main .subGrid .albumContainer .albumTitle {
    min-height: 7rem;
    font-size: clamp(2.5rem, 2vw, 2rem);
  }
  body .main .subGrid .price {
    font-size: clamp(2.5rem, 2vw, 2rem);
  }
  body .main .history .historyDropdown p {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    word-break: keep-all;
    width: 60%;
  }
  body .main .history .historyDropdown .historyList .historyItem {
    margin: 5px auto;
  }
  body .main .history .historyDropdown .historyList .historyItem p {
    width: 100%;
  }
  body .main .history .historyDropdown .historyList .historyItem .totalPrice {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    width: 80%;
    margin: 10px auto;
  }
}
@media (max-width: 480px) {
  body .main .subGrid div .flipContainer {
    max-width: 80%;
    height: auto;
  }
}

/*# sourceMappingURL=style.css.map */
