@media print {
.card {
  margin: 5px 0px;
  width: 500px;
  height: 300px;
  position: relative;
  padding: 25px;
  font-family: "noodle";
  background: #FFFFFF;
  border-radius: 23px;
  border: 3px solid #ff5252;
  transition: all 0.8s cubic-bezier(0.15, 0.83, 0.66, 1);
  cursor: pointer;
}

.card:hover {
  transform: scale(1.05);
}

.container {
  position: absolute;
  right: -10px;
  top: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
}
.container img {
    float: right;
    width: 150px;
    height: 150px;
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-header span:first-child {
  word-break: break-all;
  font-weight: 800;
  font-size: 50px;
  color: #ff5252;
  text-align: left;
}

.card-header span:last-child {
  font-weight: 700;
  font-size: 15px;
  line-height: 135%;
  color: rgba(87, 77, 51, 0.33);
}

.temp {
  position: absolute;
  left: 25px;
  bottom: 100px;
  font-weight: 700;
  font-size: 145px;
  line-height: 77px;
  color: rgba(87, 77, 51, 1);
}

.temp-scale {
  width: 200px;
  height: 36px;
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
}

.temp-scale span {
  font-weight: 700;
  font-size: 25px;
  line-height: 134.49%;
  color: #ff5252;
}
}