body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "poppins";
  color: #1d2539;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.9; /* Adjust transparency; 1 is fully opaque, 0 is fully transparent */
    z-index: -1; /* Ensure it's rendered below the content */
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 5%;
}

.main-content h1 {
  font-size: 24px;
  font-weight: bold; /* Use the maximum available weight */
  text-shadow: 0.7px 0 0 currentColor, -0.7px 0 0 currentColor,
    0 0.7px 0 currentColor, 0 -0.7px 0 currentColor; /* Simulates extra boldness */
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
  margin-top: 8%;
}

.main-content .tagline {
  font-family: Poppins;
  font-size: 24px;
  margin-bottom: 0px;
  padding: 0px;
  line-height: 24px;
  width: 500px;
  text-align: justify;
  -webkit-text-align: justify;
  color: #929292;
  display: block;
  letter-spacing: 4px;
}

.main-content .tagline:after {
  content: "";
  display: inline-block;
  width: 100%;
}

.main-content .coming-soon {
  font-size: 64px;
  line-height: 64px;
  margin-top: 25px;
  color: #3c70bf;
  font-weight: bold;
  text-shadow: 0.7px 0 0 currentColor, -0.7px 0 0 currentColor,
    0 0.7px 0 currentColor, 0 -0.7px 0 currentColor; /* Simulates extra boldness */
}

.notify-btn {
  font-size: 24px;
  color: #000000;
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #000000;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-transform: uppercase;
  margin-bottom: 8%;
  letter-spacing: 4px;
}

ul {
  list-style-type: none;
}

li {
  padding: 10px;
}
.footer-nav {
  font-size: 20px;
  color: #000000;
  display: flex;
  justify-content: center;
}

.footer-nav li {
  font-family: poppins;
  text-decoration: none;
  font-size: 20px;
  font-weight: 100;
  padding-left: 25px;
  letter-spacing: 4px;
  position: relative;
}

.footer-nav li:not(:last-child)::after {
  content: "|";
  margin-left: 25px;
}
