Question #87

Author: admin
tags: SCSS  
.hotel-card {
  color: green;

  &__title {
    font-size: 1.1rem
  }

  &__description {
    font-size: 0.8rem
  }
}
In which CSS will this SCSS code be compiled?
.hotel-card {
  color: green;
}
.hotel-card__title {
  font-size: 1.1rem;
}
.hotel-card__description {
  font-size: 0.8rem;
}
.hotel-card {
  color: green;
}
.hotel-card__title {
  color: green;
  font-size: 1.1rem;
}
.hotel-card__description {
  color: green;
  font-size: 0.8rem;
}
.hotel-card__title {
  color: green;
  font-size: 1.1rem;
}
.hotel-card__description {
  color: green;
  font-size: 0.8rem;
}
.hotel-card {
  color: green;
}
.hotel-card .hotel-card__title {
  font-size: 1.1rem;
}
.hotel-card .hotel-card__description {
  font-size: 0.8rem;
}
Rate the difficulty of the question:
easyhard