@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: rgb(5, 251, 183);
  --text-color: rgb(27, 27, 27);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}
body {
  font-family: "Poppins";
  width: 100%;
  height: auto;
}
main {
  width: 100%;
  min-height: 100vh;
  padding: 25px;
  background-image: url(../images/bg.jpg);
  background-size: cover;
}
header {
  padding: 15px 60px 50px 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: auto;
}

header button {
  border-radius: 27px;
  background-color: var(--primary-color);
  height: 55px;
  padding: 0 35px;
  font-size: 16px;
  font-weight: bold;
  color: var(--text-color);
  font-family: "Open Sans";
  border: 0;
}
header button i {
  font-size: 18px;
  margin-right: 10px;
}
#countdown {
  display: flex;
  align-items: center;
  width: 30%;
  text-align: center;
}
#countdown .time {
  font-size: 50px;
  color: var(--text-color);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
}
#countdown .timeSingle {
  width: 25%;
}
#countdown .timeSingle span {
  font-size: 18px;
  font-weight: normal;
  display: block;
  width: max-content;
  margin: 0 auto;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}
#countdown .timeSingle span:before {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 4px;
  z-index: -1;
  background-color: var(--primary-color);
}
.comingSoon {
  text-align: center;
  width: 50%;
}
.comingSoon h1 {
  font-size: 150px;
  color: rgb(27, 27, 27);
  font-weight: 900;
  width: max-content;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.comingSoon h1::before {
  content: "";
  width: 100%;
  background-color: var(--primary-color);
  height: 13px;
  position: absolute;
  bottom: 37px;
  left: 0;
  z-index: -1;
}
.comingSoon h1 span {
  position: absolute;
  font-size: 40px;
  left: 29%;
  top: 0;
  width: max-content;
}
.subscribe {
  border: solid 1px rgb(152, 152, 152);
  border-radius: 28px;
  height: 60px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  margin-top: 35px;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subscribe:focus-within {
  border-color: var(--primary-color);
}
.subscribe input {
  width: -webkit-fill-available;
  height: 100%;
  border: 0;
  background-color: transparent;
  padding-left: 28px;
}
.subscribe input:focus {
  outline: none;
}
::placeholder {
  font-size: 15px;
  font-family: "Open Sans";
  color: rgb(136, 136, 136);
}

.subscribe button {
  border-radius: 50%;
  background-color: var(--primary-color);
  min-width: 48px;
  height: 100%;
  display: grid;
  place-content: center;
  color: rgb(60, 60, 60);
  font-size: 15px;
  border: 0;
}
