#recommendations {
  padding: 50px 30px;
  background-image: linear-gradient(to top, #333, black);
}

#recommendations h2 {
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    font-size: clamp(26px, 3vw, 28px);
    color: white;
    padding: 10px;
    text-align: center;
}

#recoWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.recoQuote {
  position: absolute;
  z-index: 10;
  font-family: "Fredoka", sans-serif;
  font-size: 100px;
  top: 0;
  right: 0;
  color: rgb(255, 58, 58);
}

.recoCard {
  position: relative;
  font-family: "Fredoka", sans-serif;
  background-image: linear-gradient(to right, white, rgb(255, 221, 177));
  color: rgb(68, 58, 44);
  transform: rotate(1deg);
  transform-origin: center;
  padding: 30px;
  max-width: 600px;
  border-radius: 20px;
  font-style: italic;
  font-size: clamp(16px, 3vw, 18px);
}

.recoCard:hover {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.recoCard span {
  font-weight: 600;
}