.offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.promo-code-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #308863;
  padding: 19px;
  border-radius: 24px;
  max-width: 196px;
  cursor: pointer;
  animation: promo 3s ease-in-out infinite;
  transition: background-color 0.4s;
}

.promo-code-display {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-label {
  font-size: 0.6em;
  color: #ededed;
  text-align: center;
}

.promo-code {
  background: #fff;
  border-radius: 10px;
  font-size: 1em;
  color: #3e3e3e;
  font-weight: 600;
  text-align: center;
  margin-top: 5px;
  padding: 5px;
}

.copy-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #308863;
  margin: 5px 0 5px 5px;
  border-radius: 50%;
  margin-left: 22px;
}

@media (max-width: 750px) {
  .offer-container {
    flex-direction: column;
  }
}


@media (min-width: 850px) {
  .promo-code-container {
    margin-top: 0;
  }
}
