* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  @import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:wght@300;400;500;700&display=swap");
  font-family: "Lato", sans-serif;
}

/* Containers and Sections */

body {
  display: grid;
  place-items: center;
  min-height: 100%;
  grid-template-rows: auto 1fr auto;
  background-color: #ffffff;
}

.pent {
  display: grid;
  /* place-items: center; */
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  column-gap: 15px;
  row-gap: 2px;
  padding: 0.75em;
  margin-top: 1em;
  background-color: rgba(234, 234, 234, 0.7);
  width: 100%;
}

.container {
  display: grid;
  width: 100%;
  min-height: 100vh;
  place-items: center;
  min-height: 100vh;
  margin: 1em 0em;
}

.version {
  padding: 0.5rem;
  /* place-items: center; */

  display: grid;
  color: rgb(18, 44, 79);
}

.description {
  margin: 0.3rem 0.1rem;
  display: grid;
  place-items: start;
}

.frontBack {
  width: 45%;
  border: 6px solid rgb(18, 44, 79);
  margin: 8px;
}

/* Headings */

h3 {
  font-size: 1.2rem;
  padding: 0.3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
}

h4 {
  font-size: 1.1rem;
  padding: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
}

.h6 {
  font-size: 1rem;
  padding: 0.15rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
}

h6 {
  font-size: 18px;
  padding: 0.15rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
}

/* Font Colors and Text Alignment*/

.blue {
  color: rgb(18, 44, 79);
}

.center {
  text-align: center;
  margin-bottom: 0.3rem;
}

.display-center {
  display: grid;
  place-items: center;
  align-items: end;
}

/* Borders */

.blueBorder {
  background-color: rgb(218, 180, 81);
  padding: 12px 10px;
  border: 4px solid rgb(18, 44, 79);
  transition-duration: 0.5s;
}

.blueBorder:hover {
  border-color: transparent;
}

.thickGold {
  border: 6px solid rgb(218, 180, 81);
  display: grid;
  place-items: center;
  width: 80%;
  padding: 8px;
}

/* Buttons */
.order-btn {
  background-color: #122c4f;
  color: #dab451;
  padding: 16px 40px;
  transition-duration: 200ms;
  margin-top: 20px;
  align-self: self-end;
  width: 197px;
  height: 54px;
  border-radius: 0px;
}

.order-btn:hover {
  background-color: #dab451;
  color: #122c4f;
}

.textButton {
  text-decoration: none;
  font-size: 18px;
  color: #dab451;
  background-color: #122c4f;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.textButton:hover {
  color: #122c4f;
  background-color: #dab451;
}

.textButton:focus {
  background-color: #1f4b86;
}

/* Hidden */

.tabletLayout {
  display: grid;
  place-items: center;
  margin-top: 10px;
}

@media only screen and (max-width: 1560px) {
  .thickGold {
    width: 92%;
  }

  .frontBack {
    width: 65%;
  }
}

@media only screen and (max-width: 1360px) {
  .thickGold {
    width: 98%;
  }

  .frontBack {
    width: 70%;
  }
}

@media only screen and (max-width: 1260px) {
  h3 {
    font-size: 18px;
  }

  p {
    font-size: 16px;
  }

  .thickGold {
    width: 92%;
  }

  .pent {
    grid-template-columns: none;
    grid-template-rows: auto;
    row-gap: 10px;
  }

  .tablet-disappear {
    display: none;
  }

  .description {
    display: none;
  }

  .price {
    display: none;
  }

  .b1 {
    display: none;
  }

  .version {
    margin-right: 8em;
    margin-left: 8em;
  }
}

@media only screen and (max-width: 875px) {
  .frontBack {
    width: 70%;
  }

  .version {
    margin-right: 6em;
    margin-left: 6em;
  }
}

@media only screen and (max-width: 750px) {
  .frontBack {
    width: 75%;
  }

  .version {
    margin-right: 2.5em;
    margin-left: 2.5em;
  }
}

@media only screen and (max-width: 675px) {
  .frontBack {
    width: 95%;
  }

  .version {
    margin-right: 1.5em;
    margin-left: 1.5em;
  }
}

@media only screen and (max-width: 575px) {
  .version {
    margin-right: 0.25em;
    margin-left: 0.25em;
  }
}

@media only screen and (max-width: 475px) {
  .frontBack {
    width: 98%;
  }
}

@media only screen and (max-width: 400px) {
  .thickGold {
    padding: 5px;
    border: 4px solid rgb(218, 180, 81);
  }

  .frontBack {
    border: 4px solid rgb(18, 44, 79);
    margin: 2px;
  }

  .pent {
    padding: 0.75em 0em;
  }
}

@media only screen and (max-width: 360px) {
  p {
    font-size: 14px;
  }
}
