@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Anta", sans-serif;
  height: 100%;
}

body {
  background: url("./../images/bg.webp") no-repeat center center;
  background-size: cover;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

h1 {
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease-out 0.5s both;
}

h2 {
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease-out 1s both;
}

img {
  max-width: 100%;
}

.superbars {
  display: flex;
  justify-content: center;
  max-width: 450px;
  margin: 0 auto;
  animation: fadeIn 1.5s ease-out 0.5s both;
}

.exclusively {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 10px 20px;
  max-width: 450px;
  margin: 10px auto;
  border-radius: 4px;
  animation: pulse 2s infinite, fadeIn 1s ease-out 2.5s both;
  /* background: repeating-linear-gradient(
    45deg,
    #ff6a00,
    #ff6a00 10px,
    #ff7e1f 10px,
    #ff7e1f 20px
  ); */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.buy-now {
  margin-top: 20px;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  color: #333;
  border: none;
  padding: 12px 20px;
  min-width: 180px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  animation: fadeIn 1s ease-out 2s both;
  display: inline-block;
}

.buy-now:hover {
  background-color: #ffc400;
}

@media only screen and (max-width: 640px) {
  .exclusively {
    max-width: 85%;
  }
}
