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