.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: #2e825e;
  padding: 16px;
  border-radius: 30px;
  max-width: 200px;
  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: #fcfcfc;
  text-align: center;
}

.promo-code {
  background: #fff;
  border-radius: 11px;
  font-size: 1em;
  color: #3f3f3f;
  font-weight: 600;
  text-align: center;
  margin-top: 5px;
  padding: 5px;
}

.copy-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2e825e;
  margin: 5px 0 5px 5px;
  border-radius: 50%;
  margin-left: 15px;
}

@media (max-width: 750px) {
  .offer-container {
    flex-direction: column;
  }
}


@media (min-width: 850px) {
  .promo-code-container {
    margin-top: 0;
  }
}
