@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");

body {
  width: 100%;
  min-height: 100vh;
  font-family: "Unbounded";
  position: relative;
  background-image: url(../../../images/bg.jpg);
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  padding: 60px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0 !important;
}

a {
  text-decoration: none !important;
}
header {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  height: auto;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.logo {
  font-size: 45px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
}
.logo img {
  width: 20px;
  margin-right: 10px;
  vertical-align: top;
}
.logo span {
  color: var(--primary-color);
}
.mainHeading {
  font-size: 90px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  line-height: 1;
}
#countdown {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 18px;
  padding: 60px 0;
  font-size: 105px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary-color);
  width: 100%;
  height: auto;
}
#countdown .timer {
  display: grid;
  place-content: center;

  color: var(--primary-color);
}
.timer .timer-inner {
  font-weight: 900;
  font-size: 105px;
  position: relative;
  line-height: 1;
}
.timer .timer-inner::after {
  content: "*";
  position: absolute;
  top: 50%;
  right: -50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 51px;
  font-weight: 800;

  line-height: 1;
}
.timer:nth-last-of-type(1) .timer-inner::after {
  display: none;
}
.timer span {
  font-size: 25px;
  font-weight: 800;
  font-weight: normal;
  margin-top: 25px;
}
.soonDesc {
  font-size: 15px;
  color: rgb(251, 253, 247);
  font-weight: 400;
}
.wirza-button {
  width: max-content;
  height: 62px;
  padding: 0 35px;
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  border-radius: 31px;
  background: var(--primary-color);
  border: 0;
  position: relative;
  transition: 0.5s linear;
}
.wirza-button span {
  display: inline-block;
  overflow: hidden;
  position: relative;
  margin-left: 7px;
}
.wirza-button i {
  font-size: 15px;
  transform: rotate(45deg);
  transition: var(--transitions);
  position: relative;
}
.wirza-button span i:nth-child(1) {
  position: absolute;
  left: -10px;
  bottom: -10px;
  transform: translateX(-5px) rotate(45deg);
}
.wirza-button span i:nth-child(2) {
  bottom: 0;
  left: 0;
}
.wirza-button:hover span i:nth-child(2) {
  left: 100px;
  bottom: 100px;
}
.wirza-button:hover span i:nth-child(1) {
  bottom: 5px;
  left: 5px;
}

.icons {
  display: flex;
  gap: 6px;
}
.icons a i {
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
  background-color: transparent;
  font-size: 18px;
  color: var(--primary-color);
  border: solid 1px var(--primary-color);
  border-radius: 50%;
  transition: var(--transitions);
}
.icons a i:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: transparent;
}
footer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.copyright {
  font-size: 15px;
  font-weight: normal;
  color: var(--primary-color);
}
