@font-face {
  font-family: "Baloo";
  src: url("./font/baloo-Regular.woff2") format("woff2"), url("./font/baloo-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.link {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    transition: text-decoration-color 0.25;
    color: #fff;
}

.link:hover {
    text-decoration-color: rgba(255, 255, 255, 0);
}

.d-flex {
  display: flex;
}

.d-column {
  flex-direction: column;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.a-center {
  align-items: center;
}

h1, h2, h3, h4, h5, h6, p, li, a {
  margin: 0;
}

h1 {
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "itc-avant-garde-gothic-pro", "sans-serif";
  letter-spacing: 0.64px;
  line-height: 168.973%;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  color: #fff;
}

.mainWrapper {
  flex: 1;
}

main {
  height: 100%;
}

footer .contentWidth {
  max-width: 1390px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  font-size: clamp(9px, 1vw, 14px);
  text-align: center;
}
footer img {
  width: clamp(15px, 5vw, 25px);
}
footer p {
  line-height: 1.5;
}

header, main, footer {
  padding: 20px;
}

section {
  position: relative;
}

.badge {
    position: absolute;
    right: 0;
    bottom: clamp(20px, 2vw, 50px);
    width: clamp(120px, 30vw, 220px);
    filter: drop-shadow(0px 0px 20.4px rgba(0, 0, 0, 0.18));
}

header, footer {
  background-color: #A954B8;
}

nav {
  max-width: 1390px;
  margin: 0 auto;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/mainBg.webp);
  background-size: cover;
}

.mainSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(50px, 20vw, 150px) 0;
  text-align: center;
  width: 100%;
}

.countdown {
  justify-content: center;
  font-weight: bold;
  color: #8A30BB;
  border-radius: 100px;
  background: #FFF;
  box-shadow: 0px 1.743px 3.486px 0px rgba(198, 228, 246, 0.05);
  padding: 25px 50px;
  display: flex;
  gap: clamp(10px, 3vw, 20px);
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
}
.countdown p {
  display: flex;
  align-items: baseline;
  gap: clamp(5px, 1vw, 10px);
  font-family: Baloo;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.countdown span {
  font-size: 48px;
  min-width: 60px;
  text-align: right;
}

.coverLogo {
  width: clamp(250px, 50vw, 470px);
  display: block;
  margin: 0 auto;
}

@media (max-width: 1250px) {
  nav {
    display: flex;
    justify-content: center;
  }
  .badge {
    position: inherit;
    margin: auto;
  }
  footer .contentWidth {
    flex-direction: column;
    gap: 10px;
  }
  .countdown {
    padding: 15px 30px;
  }
  .countdown span {
    font-size: 40px;
    min-width: 50px;
  }
  .countdown p {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .countdown {
    padding: 15px 20px;
    gap: 5px;
  }
  .countdown span {
    font-size: 30px;
    min-width: 33px;
  }
  .countdown p {
    font-size: 10px;
    gap: 2px;
  }
}