.card {
  position: absolute;
  display: flex;
  z-index:50;
  align-items: center;
  background: white;
  border-radius: 20px;
padding:10px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: fit-content;
  transform: rotate(15deg);
}

.card-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  margin: 0 10px 0 0;
  object-fit: cover;
}

.card-content {
  display: flex;
  flex-direction: column;
  line-height:15px;
}

.card-title {
  font-size: 28px;
  font-weight: 700;
}

.card-title span {
  font-size: 18px;
  font-weight: normal;
}

.card-stars {
  color: #00cfff;
  font-size: 18px;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .card {
   display:none;
     visibility: hidden;
  }

 
}


@media (max-width: 640px) {
  .card {
    display:none;
     visibility: hidden;
  }

  
}

  .card-title {
    font-size: 20px;
  }

  .card-title span,
  .card-stars {
    font-size: 14px;
  }
}
