.deals {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  margin: 5rem;
  row-gap: 1.5rem;
  column-gap: 3rem;
  flex-wrap: wrap;
}

.deal {
  text-decoration: none;
  color: black;
  display: flex;
  flex-direction: column;
  row-gap: 0.2rem;
  border-radius: 1rem;
  box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.2);
}

.deal:hover {
  transition: box-shadow 0.2s ease-in-out;
  box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.5);
}

.deal-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.deal-content {
  position: relative;
  width: 20rem;
  height: 20rem;
}

.deal-image {
  z-index: -1;
  position: absolute;
  border-radius: 1rem;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  align-items: center;
  justify-content: center;
}

.deal-price {
  margin: auto;
  margin-top: 15rem;
  display: flex;
  justify-content: center;
}

.deal-price p {
  padding-inline: 0.7rem;
  padding-block: 0.4rem;
  font-size: 1.5rem;
  border-radius: 1rem;
  color: white;
  background-color: red;
  text-align: center;
  box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.2);
}

.deal-price s {
  opacity: 0.8;
}
