@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1440px;
  width: 100%;
  padding: 20px 20px;
  margin: 0 auto;
}

body,
html {
  width: 100%;
  min-height: 100vh;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  background: rgb(246, 132, 73);
  background: linear-gradient(
    152deg,
    rgba(246, 132, 73, 1) 0%,
    rgba(253, 186, 116, 1) 100%
  );
  color: white;
}

.wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: 6px;
}
.discount-text{
  font-size: 20px;
  text-align: center;
}
.timer-wrapper {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-bar {
  width: 300px;
  height: 6px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  width: 100%;
  height: 100%;
  background-color: black;
  transition: width 1s linear
}

#countdown {
  font-size: 24px;
  font-weight: bold;
  color: white
}
.redirect-text{
  font-size: 28px;
  text-align: center;
  font-weight: 600;
}
.image-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.image-area img {
  width: 150px;
}
.mockup{
  max-width: 280px;
}

@media (max-width : 480px){
  .mockup{
    width: 250px;
  }
  .redirect-text{
    font-size: 24px;
  }
  .image-area a img{
    width: 120px;
  }
  .timer-bar {
    width: 250px;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
