body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100wv;
  background-color: #535967;
}
body .special-offer {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  padding: 1rem;
  font-family: "Roboto", sans-serif;
}
body .special-offer__price {
  width: inherit;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: #ea4c89;
}
body .special-offer__price__text {
  text-align: center;
  margin-bottom: 1rem;
  color: #ddd1d4;
  font-weight: 300;
  font-size: 1.2rem;
}
body .special-offer__price__amount {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
body .special-offer__price__amount__currency {
  font-size: 2rem;
}
body .special-offer__price__amount__price {
  font-weight: 300;
  font-size: 8rem;
}
body .special-offer__description {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color: #fff;
}
body .special-offer__description__text {
  padding: 2rem 1rem 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: #9d969b;
}
body .special-offer__description__indicator {
  display: flex;
  justify-content: center;
}
body .special-offer__description__indicator__sign {
  width: 10px;
  height: 10px;
  border: 3px solid #ddd1d4;
  border-radius: 50%;
}
body .special-offer__description__indicator__sign:not(:last-of-type) {
  margin-right: 9px;
}
body .special-offer__description__indicator__sign--active {
  background-color: #ddd1d4;
}
body .special-offer__description__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  padding: 15px 15px;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 30px;
  border: none;
  outline: none;
  cursor: pointer;
  letter-spacing: 2px;
  background-color: #ffb234;
  color: #fff;
  text-transform: uppercase;
}
body .special-offer__description__logo {
  position: absolute;
  align-self: flex-end;
  transform: translate(40px, 80px);
  background: url(https://cdn.freebiesupply.com/logos/large/2x/dribbble-icon-1-logo-png-transparent.png) no-repeat center center;
  background-size: cover;
  height: 85px;
  width: 85px;
}