@font-face {
  font-family: firstFont;
  src: url();
}

img,
picture,
video {
  max-width: 100%;
}

* {
  font-family: "Nunito", "Oswald", Tahoma, sans-serif;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-size: 1em;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  display: flex;
  flex-direction: column;
  position: relative;
  background-image: linear-gradient(
    90deg,
    #ff9800,
    rgba(241, 0, 40, 0.768),
    rgb(255, 127, 52)
  );
  color: white;
  text-align: center;
  width: 100%;
  height: 20vh;
}

footer small {
  position: absolute;
  padding: 3px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
}

body main {
  flex: 1;
  margin-top: 5vh;
  margin-bottom: 10vh;
}

header {
  display: flex;
  justify-content: center;
  align-self: center;
  width: 85vw;
  justify-content: center;
  border-radius: 20px;
  border-bottom: solid 1px rgb(232, 232, 232);
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.179);
}

.header-title {
  padding: 1.7% 5%;

  font-size: 1em;
  font-weight: 200;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.column-1 {
  position: relative;
  flex: 1;
  margin: 2%;
}

.product-catalog {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5em;
}

.column-2 {
  flex: 1;
  margin: 2%;
}

.column-2 h3 {
  text-align: center;
}

.main-image {
  border-radius: 15px;
  min-width: 16em;
  width: 39vw;
  margin: 1em;
}

.secondary-images {
  text-align: center;
}

.secondary {
  border-radius: 10px;
  width: 4em;
  height: auto;
  top: 10%;
  border: solid 1.3px rgb(52, 52, 52);
  transition: border, 120ms ease-in-out;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
}

.button-amazon {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #ff9800, #ffb300);
  color: rgb(17, 17, 17);
  font-size: 18px;
  padding: 16px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.button-amazon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out,
    top 0.5s ease-in-out, left 0.5s ease-in-out;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.button-amazon {
  text-decoration: none;
}
.button-amazon:hover::before {
  width: 0;
  height: 0;
}

.column-2 {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
}

.column-2 h3 {
  margin-top: 10%;
  font-size: 2.5em;
}

.column-2 p {
  font-size: 1.1em;
  margin: 5% 2%;
}

.button-amazon {
  align-self: center;
}

.animate {
  animation-name: ease;
}

.price-tag .price {
  font-weight: 700;
  color: rgb(190, 29, 29);
}

.column-2 {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
footer address {
  line-height: 25px;
  position: relative;
  top: 18%;
  display: block;
  text-decoration: none;
  color: white;
}

footer address .phone-number {
  display: block;
  text-decoration: none;
  color: white;
}

footer address .address-title {
  font-style: normal;
}

main .features-list {
  list-style-type: none;
  margin-top: 10%;
  font-size: 1em;
  font-weight: bold;
  line-height: 30px;
  margin: 0px;
}
main .features-list li svg {
  vertical-align: -22%;
}

.features {
  display: flex;
  justify-content: space-evenly;
}

.in-stock {
  display: block;
  font-weight: 700;
  font-size: medium;
  margin-bottom: 5%;
}

.fast-shipping {
  display: block;
  color: rgb(13, 165, 13);
  margin-bottom: 8%;
}

hr {
  margin-top: 3%;
  margin-bottom: 3%;
}

.image-hover {
  border-color: #ff9800;
  transform: scale(1.1);
  border-width: 3px;
}

.image-default {
  border-color: rgb(57, 47, 47);
}
