.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: #060b16;
  padding: 15px;
  border-radius: 16px;
  max-width: 199px;
  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: #f6f6f6;
  text-align: center;
}

.promo-code {
  background: #fff;
  border-radius: 8px;
  font-size: 1em;
  color: #3e3e3e;
  font-weight: 600;
  text-align: center;
  margin-top: 6px;
  padding: 5px;
}

.copy-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #060b16;
  margin: 6px 0 6px 6px;
  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;
  }
}
