.header {
  font-size: 1.3em;
}

.toplist-card-wrapper {
  display: flex;
  flex-direction: column;
  margin: 20px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.toplist-card {
  display: flex;
  margin-top: 25px;
  border-radius: 10px;
  flex-direction: column;
  background-color: #ffffff;
  border-bottom: 2px solid #afafaf;
}

.toplist-card-head {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.toplist-card-head img {
  width: 300px;
  height: auto;
}

.usp {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  color: #555;
  text-decoration: underline;
}

.container {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.reg a {
  border-radius: 10px;
}

.registration {
  margin-top: 28px;
  width: 100%;
  margin-top: 0;
  padding: 30px 25px;
  font-size: 1em;
  color: #fff;
  background: linear-gradient(
    to right,
    #fbc103 0,
    #f79604 15%,
    #f79604 30%,
    #fbc103 55%,
    #fbc103 100%
  );
  background-position: 50%0;
  background-size: 200%;
  box-shadow: 0 5px 10px 0 rgba(6, 8, 15, 0.1), inset 0 0 3px 0#ffdd8f;
  transition: box-shadow 0.3s, text-shadow 0.3s;
}

.registration:hover {
  background-position: 0 0;
  box-shadow: 0 2px 2px 1px rgba(6, 8, 15, 0.1),
    0 4px 4px 1px rgba(6, 8, 15, 0.1), 0 8px 8px 1px rgba(6, 8, 15, 0.1),
    0 16px 16px 1px rgba(6, 8, 15, 0.1), 0 32px 32px 1px rgba(6, 8, 15, 0.1),
    inset 0 0 3px 0#ffdd8f;
  text-shadow: 0 1px 3px #967302;
  color: #ffffff;
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.promo-code-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1bac7e;
  padding: 14px;
  border-radius: 20px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

.promo-code-display {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-label {
  font-size: 0.8em;
  color: #f5f5f5;
  text-align: center;
}

.promo-code {
  font-size: 1.2em;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding-top: 7px;
}

.copy-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1bac7e;
  padding: 10px;
  border-radius: 50%;
  margin-left: 14px;
}

@media (max-width: 750px) {
  .container {
    flex-direction: column;
  }
  .usp {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 13px;
  }
}

@media (min-width: 750px) {
  .registration {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .header {
    gap: 100px;
  }
}
